码迷,mamicode.com
首页 > 编程语言 > 详细

Spring3中用注解直接注入properties中的值

时间:2016-03-17 16:26:29      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:

在bean(可是controller, service, dao等了)中,使用@Value注解:

@Service

public class TestService{

@Value("${sytem.username}")
String loginUserName;

}

在spring中定义资源文件:
<context:property-placeholder />或者org.springframework.beans.factory.config.PropertyPlaceholderConfigurer
<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<array>
<value>classpath:config.properties</value>
</array>
</property>
</bean>
config.properties文件:

sytem.username=admin

这样config.properties中的sytem.username就注入到loginUserName属性中了

Spring3中用注解直接注入properties中的值

标签:

原文地址:http://www.cnblogs.com/kms1989/p/5287706.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!