我正在研究多模块 maven 项目(多模块 maven 项目的新手)。
我有带有目录结构/ModuleA/ConfigFiles/config.properties的模块A。
模块 B使用模块 A使用 maven 依赖项。
现在模块 A源文件检索配置文件为
String configFile = System.getProperty("user.dir")+"\\ConfigFiles\\config.properties";
因此,当我从Module B调用Module A函数时,它使用的是Module B本地项目目录,而不是Module A的项目目录。
在多模块项目中是否有任何解决方案/解决方法?