今天发现spring3.0中加入了@Value这个annotation。可以直接注入属性文件,通过key指定。
例如:
@Service("userService")
public class UserService {
@Value("${p1}")
private String p1;
@Value("${p2}")
private String p2;
}
属性文件内容就为:(system.properties)
p1=p1Value
p2=p2Value
通过标注@Value会把properties文件的值注入进来,方便了吧。不需要自己来写了。
posted on 2011-03-04 17:13
SIMONE 阅读(545)
评论(0) 编辑 收藏 所属分类:
JAVA