maven子项目读取父项目的properties
主要通过读取父项目target/classes目录的路径来获取父项目中resource下的properties文件
如图:
URL resource = this.getClass().getClassLoader().getResource("env/dev/dev_dubbo.properties");
//path 为父项目target/classes的路径,classes下面就是父项目的class文件以及所有的配置文件
String path = resource.getPath();
try {
properties.load(new FileReader(resource.getPath()));
}catch (Exception e){
}
String test = properties.getProperty("test");
注意:需要读取的配置文件在resource下什么位置,相对路径是什么,在this.getClass().getClassLoader().getResource("");中写上相对路径就可以读取到了,项目启动后也可以去target/classes下看配置文件有没有在里面
下面是我项目的配置文件结构