我试图让Tomcat加载一个外部属性文件,该文件存在于WAR文件的类路径之外。
我有一个名为PropertiesSingleton的简单类,它应该将属性文件加载到java.util.Properties对象中。
package my.test.properties;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class PropertiesSingleton {
private static String filenameProperty = "testprops";
private static IProperties properties; //This is an interface that defines a number of get methods for each property
private final static Logger log = LoggerFactory
.getLogger(PropertiesSingleton.class);
public static void main(String[] args) {
IProperties props = PropertiesSingleton.load();
}
public static synchronized IProperties load() {
InputStream stream;
if (properties == null) {
try {
String propertyFileName = System.getProperty(filenameProperty);
String variableFileName = System.getenv(filenameProperty);
log.debug("Value of "+filenameProperty+" parameter: "+propertyFileName);
log.debug("Value of "+filenameProperty+" env variable: "+variableFileName);
PropertiesImpl props = new PropertiesImpl(); //A subclass of java.util.Properties implementing the IProperties interface
if(propertyFileName != null && !propertyFileName.isEmpty()){
File file = new File(propertyFileName);
log.debug("Loading properties from parameter '"+propertyFileName+"'" + (file.exists() ? "" : ", which does not exist") );
stream = new FileInputStream(file);
}else if(variableFileName != null && !variableFileName.isEmpty()){
File file = new File(variableFileName);
log.debug("Loading properties from environment variable'"+variableFileName+"'"+ (file.exists() ? "" : ", which does not exist"));
stream = new FileInputStream(file);
}else{
log.debug("Loading properties from properties file");
stream = ClassLoader.getSystemClassLoader().getResourceAsStream("my/test/properties/test.properties");
}
if(stream == null){
log.warn("Could not load the properties file");
return props;
}
props.load(stream);
properties = props;
log.info("Loaded properties " + properties);
} catch (IOException ex) {
log.error("Could not load properties", ex);
} catch (Exception ex) {
log.error("Unexpected Error: Could not load properties", ex);
throw ex;
}
}
return properties;
}
public static synchronized IProperties reload(){
properties = null;
return load();
}
}
当我添加一个Env属性并通过我的IDE运行main方法时,这似乎按预期工作。
2015-05-26 09:17:02,136 DEBUG Value of testprops parameter: null
2015-05-26 09:17:02,139 DEBUG Value of testprops env variable: C:\test\test.properties
2015-05-26 09:17:02,141 DEBUG Loading properties from environment variable'C:\test\test.properties'
2015-05-26 09:17:02,141 INFO Loaded properties {defaultLocale=dk, host=123.123.123.123}
但是,当我有勇气将WAR打包并在我的本地Tomcat8上运行时,我得到了一条令人兴奋的新消息。 (tomcat WAR在某些时候调用了PropertiesSingleton.load):
2015-05-26 09:17:02,136 DEBUG Value of testprops parameter: null
2015-05-26 09:17:02,139 DEBUG Value of testprops env variable: C:\test\test.properties
2015-05-26 09:17:02,141 DEBUG Loading properties from environment variable'C:\test\test.properties', which does not exist
2015-05-26 09:42:36,114 ERROR Could not load properties
java.io.FileNotFoundException: C:\test\test.properties (The system cannot find the file specified)
Tomcat中是否有一些安全功能现在允许我访问我的文件系统,或者是其他可怕的错误?
我还应该注意到我正在进行此练习,因为我需要一个外部属性文件,该文件位于Tomcat服务器上的WAR上下文之外。有几个原因。例如,多个应用程序将共享另一个正在运行的应用程序的配WAR内的属性文件将是不切实际的。 如果有人知道从WAR读取外部属性文件的另一种方法,那么这也将被慷慨地接受为答案。
答案 0 :(得分:1)
servlet规范不支持访问底层文件系统,并且不能保证工作,特别是如果从未爆炸的.war
文件进行访问(我假设'是什么& #39;发生在你的情况下)。
它使您的应用程序依赖于底层系统 - 操作系统,服务器等。recommended way将您的配置打包在.war
- 文件中。
如果你必须这样做(并且我同意外部配置可能是一个好主意),这里有一个更加独立于操作系统的方式,使用java.net.URL
和{{3} }:
URL url = new URL("file:///test/test.properties");
URLConnection con = url.openConnection();
ResourceUtils.useCachesIfNecessary(con);
InputStream stream = con.getInputStream();
改编自file: URI scheme。如果可以的话,使用像Spring这样的库/框架及其Resource
抽象。