在Restful Web服务中,如果我想从某些属性文件中获取值,则意味着需要将这些.property文件保存在战争中。
答案 0 :(得分:1)
我通过添加
解决了我的问题 InputStream inputStream = Thread.currentThread().getContextClassLoader()
.getResourceAsStream(propertiesFileName);
if(inputStream != null) {
properties.load(inputStream);
}
此代码。当我的war文件当前正在任何应用程序服务器上运行时。
答案 1 :(得分:0)
您可以使用getResourceAsStream()在REST服务实现中读取您喜欢的任何.properties。