类路径资源[classpath *:xxxxx.properties]无法打开,因为它不存在

时间:2015-10-15 17:44:03

标签: java spring java-ee websphere weblogic

我正在尝试在当前的spring应用程序中实现一些条件导入bean上下文文件。为了使这项工作,我在SO中使用类似的解决方案来扩展ApplicationContextInitializer<ConfigurableApplicationContext>

package com.mydepartment.app.util;

public class MyApplicationContextInitializer implements ApplicationContextInitializer<ConfigurableApplicationContext> {

   @Override
   public void initialize(ConfigurableApplicationContext applicationContext) {
      ConfigurableEnvironment env = applicationContext.getEnvironment();

      // load from web.xml context-param
      String propertyFileClassPath = env.getProperty("propertyFileClassPath");

      try {
          MutablePropertySources sources = env.getPropertySources();
          sources.addFirst(new ResourcePropertySource(new ClassPathResource(propertyFileClassPath)));
      } catch (IOException ioException) {
         LOG.info(ioException.getMessage());
         LOG.error( "Loading resource failed..", ioException);
      }
   }
}

这是希望我添加到web.xml中以使当前应用程序能够加载包含定义条件的属性的属性文件

<context-param>
    <param-name>contextInitializerClasses</param-name>
    <param-value>com.mydepartment.app.util.MyApplicationContextInitializer</param-value>
</context-param>
<context-param>
    <param-name>propertyFileClassPath</param-name>
    <param-value>classpath*:application-env.properties</param-value>
</context-param>

.....
<listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

application-env.properties位于

%war_file_name%\WEB-INF\classes\application-env.properties

但是上面的配置/编码会在 WebLogic Websphere 中返回错误,这让我对此修复非常痛苦:

2015-10-15 13:23:12,625 -- INFO -- com.mydepartment.app.util.MyApplicationContextInitializer -- class path resource [classpath*:application-env.properties] cannot be opened because it does not exist
2015-10-15 13:23:12,626 -- ERROR -- com.mydepartment.app.util.MyApplicationContextInitializer -- Loading resource failed..

java.io.FileNotFoundException:无法打开类路径资源[classpath *:application-env.properties],因为它不存在

我尝试了几种模式来建立类路径,但都失败了,例如:

classpath*:application-env.properties
file:/WEB-INF/classes/application-env.properties
/WEB-INF/classes/application-env.properties
../classes/application-env.properties

我可能希望应用程序从应用程序内的属性文件加载init属性,而不是系统属性或服务器属性。但是我没有看到有必要将属性文件添加到服务器的类路径中。

我没有看到应用程序服务器阻止访问此内部属性文件的任何原因。

1 个答案:

答案 0 :(得分:1)

当我们使用ClassPathResource时,我们直接指定资源路径。请尝试以下方法:

ClassPathResource cr = new ClassPathResource("application-env.properties");