5

我有一个属性文件,我使用以下property-placeholder元素通过 XML 向 Spring 注册:

<context:property-placeholder location="classpath:foo.properties" />

我可以使用@Value注释访问属性,例如

@Value("${prefs.key}")
private String prefValue;

但我还需要通过 Spring Environment 访问属性,例如

@Autowired
private Environment env;

public String getValue(String key) {
  return env.getProperty(key);
}

getValue()这里总是返回null,即使是在属性文件中定义的键,因为似乎 using<property-placeholder>不会将属性暴露给环境。有没有办法强制以这种方式加载的属性可以通过环境访问?

4

1 回答 1

3

来自 Spring 3.2.x参考和介绍博客文章

在 Spring 3.1 之前,context:property-placeholder命名空间元素注册了一个PropertyPlaceholderConfigurer. spring-context-3.0.xsd如果使用命名空间的定义,它仍然会这样做。也就是说,你可以 PropertyPlaceholderConfigurer通过命名空间保存注册,即使使用 Spring 3.1;只需不要更新您的xsi:schemaLocation并继续使用 3.0 XSD。

所以,我的猜测是您的 XML没有使用正确的 XSD 版本。

于 2014-01-22T08:10:46.020 回答