我正在使用下面的代码来读取文件,我可以读取env.properties
使用@Value
注释(注入)中定义的值。
有什么方法可以在不使用@value
(注入)的情况下在方法中获取这些值?
<bean class="org.springframework.context.support.PropertySourcesPlaceholderConfigurer">
<property name="locations">
<list>
<value>classpath:env.properties</value>
</list>
</property>
<property name="ignoreUnresolvablePlaceholders" value="true" />
<property name="ignoreResourceNotFound" value="true" />
</bean>