spring 使用注解装配的Bean如何使用property-placeholder属性配置中的值
很久没动笔了
?
spring 使用注解装配的Bean如何使用property-placeholder属性配置中的值
?
这个问题不大不小,以前偷懒凡是碰到需要引用属性文件中的类时就改用xml来配置。
?
今天看了下spring 3 的El,看来有更简单的解决方式,这个自己一直还不知道,赶不上时代了
?
在XML配置文件中配置一个util:properties
?
?
<context:property-placeholder location="/WEB-INF/config.properties"/>
<util:properties id="properties" location="/WEB-INF/config.properties"/>
?
然后就可以在类中使用注解
?
?
@Value("#{properties['jdbc.url']}")
private?String jdbcurl;
?
方便多了
1 楼 PeTiRo 2012-03-14 <context:property-placeholder location="/WEB-INF/config.properties"/>@Value("${jdbc.url}")