使用以下 XML 配置
<context:property-placeholder location="constants.properties"/>
<bean id="MyDBDetails"
class="itsmine.springcore.MyDBDetails" scope="singleton">
<property name="fName" value="${fName}" />
<property name="lName" value="${lName}" />
<property name="age" value="${age}" />
</bean>
我使用以下 2 个选项在我的 main 中创建了一个 bean:1)使用 ClassPathXmlApplicationContext 2)使用 bean 因子
动态值是在使用 ClassPathXmlApplicationContext 创建 bean 时设置的,但不是在使用 bean factory 创建时设置的。
您能否建议如何使用 bean factory 使其工作?
提前致谢。