想快速的获取resources/config/custom/xxx.properties文件,想搞点事情。。。
但是获取到的都是target下的,想要的是src/main/resources下的
4 回复
这个东西是不是读到内存里面去了?src/main/resources/config/custom下的xxx.properties文件里面没有找到刚刚set的数据;
target\XXXXX\WEB-INF\classes\config\custom\xxx.properties下也没有找到set的数据
@Inject
private static PropertiesProxy pp;
static {
pp = new PropertiesProxy("config/custom/xxx.properties");
}
@Test
public void testPP(){
pp.set("a","b");
}
添加回复
请先登陆