Spring占位符不解析JavaConfig中的属性
目前我有一个加载属性文件的Spring xml配置(Spring 4)。
context.properties
my.app.service = myService
my.app.other = ${my.app.service}/sample
Spring xml配置
<bean id="contextProperties" class="org.springframework.beans.factory.config.PropertiesFactoryBean">
<property name="ignoreResourceNotFound" value="true" />
<property name="fileEncoding" value="UTF-8" />
<property name="locations">
<list>
<value>classpath:context.properties</value>
</list>
</property>
</bean>
<bean id="placeholder" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="ignoreResourceNotFound" value="true" />
<property name="properties" ref="contextProperties" />
<property name="nullValue" value="@null" />
<property name="systemPropertiesModeName" value="SYSTEM_PROPERTIES_MODE_OVERRIDE" />
</bean>
使用属性的Bean
@Component
public class MyComponent {
@Value("${my.app.other}")
private String others;
}
这是完美的工作, others
值是MyService/sample
,例外。 但是当我尝试用JavaConfig替换这个配置时,组件中的@Value
不能以相同的方式工作。 该值不是myService/sample
而是${my.app.service}/sample
。
@Configuration
@PropertySource(name="contextProperties", ignoreResourceNotFound=true, value={"classpath:context.properties"})
public class PropertiesConfiguration {
@Bean
public static PropertyPlaceholderConfigurer placeholder() throws IOException {
PropertyPlaceholderConfigurer placeholder = new PropertyPlaceholderConfigurer();
placeholder.setNullValue("@null");
placeholder.setSystemPropertiesMode(PropertyPlaceholderConfigurer.SYSTEM_PROPERTIES_MODE_OVERRIDE);
return placeholder;
}
}
我是否错过了从xml到Javaconfig的转换?
ps:我也尝试实例化一个PropertySourcesPlaceholderConfigurer
而不是PropertyPlaceholderConfigurer
但没有更多的成功。
更新以使用配置PropertySourcesPlaceholderConfigurer
。 只需拥有@PropertySource
注释将是不够的:
@Bean
public static PropertySourcesPlaceholderConfigurer properties() {
return new PropertySourcesPlaceholderConfigurer();
}
@PropertySource
注释不会自动向Spring注册PropertySourcesPlaceholderConfigurer
。 因此我们需要明确配置PropertySourcesPlaceholderConfigurer
JIRA门票下面有更多关于此设计背后原理的信息:
https://jira.spring.io/browse/SPR-8539
更新:创建简单的Spring引导应用程序以使用嵌套属性。 它与上述配置工作正常。
https://github.com/mgooty/property-configurer/tree/master/complete
另一种选择是导入PropertyPlaceholderAutoConfiguration.class。
import org.springframework.boot.autoconfigure.PropertyPlaceholderAutoConfiguration;
@Import(PropertyPlaceholderAutoConfiguration.class)
如果该注释不存在,则该注释在上下文中包含一个PropertySourcesPlaceholderConfigurer。
链接地址: http://www.djcxy.com/p/84089.html上一篇: Spring placeholder doesn't resolve properties in JavaConfig