0

我正在使用 Java 7、Tomcat 7 并编写自己的 servlet。

我想将属性文件保留在 .war 文件之外。所以我或任何人都可以随时更改它。

请让我知道如何从 .war 文件外部访问 Web 应用程序中的属性文件。

谢谢,

阿莫尔

4

1 回答 1

1

使用Properties.load(InputStream)方法从您的 war 文件之外的静态位置加载属性。

Properties props = new Properties();
props.load(new FileInputStream("<<PathtoYourPropertiesFile>>"));
于 2013-06-27T16:24:00.663 回答