我们使用下面的代码将 Springbean 与属性文件中的属性一起注入。
<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations" value="classpath:/my.properties"/>
</bean>
<bean id="blah" class="abc">
<property name="path" value="${the.path}"/>
</bean>
有没有办法可以通过编程方式访问这些属性?我在尝试做一些没有依赖注入的代码。所以我想要一些这样的代码:
PropertyPlaceholderConfigurer props = new PropertyPlaceholderConfigurer();
props.load("classpath:/my.properties");
props.get("path");