我使用jboss服务器来部署我的应用程序,它运行正常。我的jboss服务器已损坏,我正在更改为tomcat 7.0.55并且它在我的控制台上给出了错误
"java.io.FileNotFoundException: resourceedge-config.xml (The system cannot find the file specified)"
resourceedge-config.xml正在读取此方法:
public static Properties loadSystemConfiguration() throws FileNotFoundException, IOException{
return loadSystemConfiguration(ConfigReader.getFile_Prefix() + "-config.xml");
}
它也是从我的应用程序过滤器类调用的:
//获取应用程序上下文
ServletContext context = filterConfig.getServletContext();
String configFilePrefix = context.getInitParameter(ApplicationFilter.APPLICATION_CONFIG_FILE_PREFIX);
if(configFilePrefix != null){
ConfigReader.setFile_Prefix(configFilePrefix);
}
try{
configuration = ConfigReader.loadSystemConfiguration();
}catch(Exception e){
e.printStackTrace();
configuration = null;
}
The resourceedge-config.xml is place inside C:\apache-tomcat-7.0.55\bin
我需要帮助才能读取文件resourceedge-config.xml。
由于