如何在创建后使用@Component注释的bean上设置属性?

时间:2013-04-03 16:47:11

标签: java spring spring-3

我有一个带有@Component的注释bean,它是使用<context:component-scan/>构建的,但是我希望在使用<context:property-placeholder/>从属性文件中的值创建一个布尔属性之后设置它

1 个答案:

答案 0 :(得分:2)

使用@Value("propertyName")注释字段。

请参阅相关问题:Spring @Value annotation in @Controller class not evaluating to value inside properties file