【发布时间】:2014-07-16 17:58:59
【问题描述】:
我正在使用 spring 加载属性文件
<bean id="appProperties" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations" value="classpath:/sample.properties" />
<property name="ignoreUnresolvablePlaceholders" value="true"/>
</bean>
当我使用
获取属性值时@Value("${testkey}") 工作正常。
但是当我尝试使用 env 时
@Resource
private Environment environment;
environment.getProperty("testkey") // returning null
【问题讨论】: