在控制器中注入属性值的最佳方法是什么?

时间:2011-04-01 01:42:20

标签: java spring-3 spring-annotations

这是如何从属性文件中在控制器中注入属性的最简单方法吗?然后需要在每个需要一些属性的控制器上导入属性文件。在像我这样的项目中,有大约30个控制器,其中10个需要这个国家的财产,我觉得它看起来很乱。 我是否正确理解了@Value的用法?

@Controller
@RequestMapping(value = "/simple")
@ImportResource("classpath:/META-INF/properties-config.xml")
public class SimpleController {

    private @Value("#{exampleProperties['simple.country']}") String country;

}

properties-config.xml (跳过xml和架构的东西)

<beans>
    <util:properties id="exampleProperties" location="classpath:/simple.properties" />
</beans>

此外,当尝试在多个控制器中导入properties-config.xml资源时,我会收到此类消息。它似乎不是正确的方法,但我无法找到一个更好的..

01 Apr 2011 04:52:29,859 INFO  org.springframework.beans.factory.support.DefaultListableBeanFactory []: Overriding bean definition for bean 'exampleProperties': replacing [Generic bean: class [org.springframework.beans.factory.config.PropertiesFactoryBean]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null] with [Generic bean: class [org.springframework.beans.factory.config.PropertiesFactoryBean]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null]

1 个答案:

答案 0 :(得分:8)

我认为你的方法在这种情况下过于复杂。典型的方法是使用<context:property-placeholder>。你宣布

<context:property-placeholder location = "classpath:/simple.properties" />

在一个地方,并在控制器中使用其属性

private @Value("${simple.country}") String country;

另外我认为以这种方式使用@ImportResource并不是一个好主意,它违反了依赖注入原则 - 这些属性是控制器工作的上下文的一部分,因此控制器不应该知道它们是如何工作的装了。