我是spring的新手,有什么方法可以使用属性文件键值对来初始化spring bean;
;如果我的config.properties
文件包含isSetup = true;
然后仅初始化<bean id="a" class="com.Setup"/>
答案 0 :(得分:0)
请参阅此帖子 How can I inject a property value into a Spring Bean which was configured using annotations?
此链接也可以为您提供帮助:http://springinpractice.com/2008/12/02/new-stuff-in-spring-30/
您可以将以下属性传递给bean:
<bean id="a" class="com.Setup"/>
<property name="isSetup " value="#{systemProperties.isSetup }"/>
</bean>