当前位置:   article > 正文

使用@Value("${xxxx}")注解从配置文件读取值_${:}配置文件中有值读取配置文件

${:}配置文件中有值读取配置文件

使用@Value("${xxxx}")注解从配置文件读取值

记录一下自己学习配置文件读取的方法。
假设配置文件为:config.properties

1、从配置文件中读取值的用法:

@Value("${user.username}")
private String usernsame;
  • 1
  • 2

2、在spring的配置文件中进行配置:
方法一(可以在中添加value节点,进行多个配置文件的加载配置):

<bean id="propertyConfig"  class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
	<property name="locations">
		<list>
			<value>classpath:config.properties</value>
		</list>
	</property>
</bean>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

方法二:

<context:property-placeholder location="classpath:config.properties" />
  • 1

方法三(跟方法一的区别就是这种配置只能加载一个配置文件):

<bean id="propertyConfig"  class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
	<property name="location">
			<value>classpath:config.properties</value>
	</property>
</bean>
  • 1
  • 2
  • 3
  • 4
  • 5

3、config.properties配置文件

#用户名
user.username = root
  • 1
  • 2
声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号