在 Restful Web 服务中,如果假设我想从某些属性文件中获取值意味着我需要将这些 .property 文件保存在战争中。
问问题
1305 次
2 回答
1
我通过添加来解决我的问题
InputStream inputStream = Thread.currentThread().getContextClassLoader()
.getResourceAsStream(propertiesFileName);
if(inputStream != null) {
properties.load(inputStream);
}
这段代码。当我的war文件当前在任何应用程序服务器上运行时。
于 2012-08-08T06:27:45.140 回答
0
You can read any .properties you like in your REST service implementation using getResourceAsStream().
于 2012-08-07T12:02:42.303 回答