16

我在 Web 应用程序中使用 Spring 3.2,我想.properties在类路径中有一个包含默认值的文件。用户应该能够使用 JNDI 来定义.properties存储另一个覆盖默认值的位置。

只要用户设置了configLocationas JNDI 属性,以下内容就可以工作。

@Configuration
@PropertySource({ "classpath:default.properties", "file:${java:comp/env/configLocation}/override.properties" })
public class AppConfig
{
}

但是,外部覆盖应该是可选的,JNDI 属性也应该是可选的。

目前我得到一个异常(java.io.FileNotFoundException: comp\env\configLocation\app.properties (The system cannot find the path specified)当 JNDI 属性丢失时。

如何定义.properties仅在设置 JNDI 属性 ( configLocation) 时使用的可选?这甚至有可能@PropertySource还是有其他解决方案?

4

3 回答 3

47

从 Spring 4 开始,问题SPR-8371已得到解决。因此,@PropertySource注解有一个新属性,称为ignoreResourceNotFound该属性正是为此目的而添加的。此外,还有新的@PropertySources注释,它允许实现如下:

@PropertySources({
    @PropertySource("classpath:default.properties"),
    @PropertySource(value = "file:/path_to_file/optional_override.properties", ignoreResourceNotFound = true)
})
于 2014-01-10T13:24:41.630 回答
5

如果您还没有使用 Spring 4(请参阅 matsev 的解决方案),这里有一个更详细但大致等效的解决方案:

@Configuration
@PropertySource("classpath:default.properties")
public class AppConfig {

    @Autowired
    public void addOptionalProperties(StandardEnvironment environment) {
        try {
            String localPropertiesPath = environment.resolvePlaceholders("file:${java:comp/env/configLocation}/override.properties");
            ResourcePropertySource localPropertySource = new ResourcePropertySource(localPropertiesPath);
            environment.getPropertySources().addLast(localPropertySource);
        } catch (IOException ignored) {}
    }

}
于 2014-05-27T11:02:36.473 回答
3

试试下面的。创建一个ApplicationContextInitializer

在 Web 上下文中:ApplicationContextInitializer<ConfigurableWebApplicationContext>并通过以下方式在 web.xml 中注册它:

<context-param>
    <param-name>contextInitializerClasses</param-name>
    <param-value>...ContextInitializer</param-value>
</context-param>

在 ContextInitializer 中,您可以通过类路径和文件系统添加属性文件(虽然没有尝试过 JNDI)。

  public void initialize(ConfigurableWebApplicationContext applicationContext) {
    String activeProfileName = null;
    String location = null;

    try {
      ConfigurableEnvironment environment = applicationContext.getEnvironment();
      String appconfigDir = environment.getProperty(APPCONFIG);
      if (appconfigDir == null ) {
        logger.error("missing property: " + APPCONFIG);
        appconfigDir = "/tmp";
      }
      String[] activeProfiles = environment.getActiveProfiles();

      for ( int i = 0; i < activeProfiles.length; i++ ) {
        activeProfileName = activeProfiles[i];
        MutablePropertySources propertySources = environment.getPropertySources();
        location = "file://" + appconfigDir + activeProfileName + ".properties";
        addPropertySource(applicationContext, activeProfileName,
                location, propertySources);
        location = "classpath:/" + activeProfileName + ".properties";
        addPropertySource(applicationContext, activeProfileName,
                          location, propertySources);
      }
      logger.debug("environment: '{}'", environment.getProperty("env"));

    } catch (IOException e) {
      logger.info("could not find properties file for active Spring profile '{}' (tried '{}')", activeProfileName, location);
      e.printStackTrace();
    }
  }

  private void addPropertySource(ConfigurableWebApplicationContext applicationContext, String activeProfileName,
                                 String location, MutablePropertySources propertySources) throws IOException {
    Resource resource = applicationContext.getResource(location);
    if ( resource.exists() ) {
      ResourcePropertySource propertySource = new ResourcePropertySource(location);
      propertySources.addLast(propertySource);
    } else {
      logger.info("could not find properties file for active Spring profile '{}' (tried '{}')", activeProfileName, location);
    }
  }

上面的代码尝试为每个活动配置文件查找一个属性文件(请参阅:如何通过属性文件而不是通过 env 变量或系统属性设置活动 spring 3.1 环境配置文件

于 2013-10-11T11:28:29.733 回答