用@Value注解直接注入properties中的值

有两种方式可以实现@Value注解直接将properties中的值注入变量,一种是@Value("${key}"),一种是@Value("#{beanName[key]}"),他们本质上是实现了不同的类

@Value("${key}"),实现PropertyPlaceholderConfigurer

demo:https://blog.csdn.net/lyz_112233/article/details/83105165

https://blog.csdn.net/lyz_112233/article/details/83105165

https://blog.csdn.net/qing_mei_xiu/article/details/53537409

1配置properties配置文件(在applicationContext中):

  • 使用<context:property-placeholder >标签,要配置多个properties文件则使用多个标签
<context:property-placeholder location="classpath:xxx.properties"
    ignore-unresolvable="true" />
  • 使用PropertyPlaceholderConfigurer配置,这样可以在list中配置多个properties文件
<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">

   <property name="locations">

      <list>

        <value>classpath:jdbc.properties</value>

      </list>

   </property>

</bean>

 

2、Client类中Annotation的使用:

  • 注释变量,对变量值进行注入:
@Value("${server.ip}")
private String ip;
  • 注释方法,对输入值进行注入(set方法不能是static的):
@Value("${getToken}")

private void setTokenUrl(String tokenUrl) {

this.tokenUrl = tokenUrl;

}

 

二、@Value("#{beanName[key]}"),实现PropertiesFactoryBean

demo:https://blog.csdn.net/w605283073/article/details/49203141

1配置properties配置文件:可以将配置整体赋给Properties类型的类变量,也可以取出其中的一项赋值给String类型的类变量

  • <util:properties/> 标签

<util:properties/> 标签只能加载一个文件,当多个属性文件需要被加载的时候,可以使用多个该标签

  • 使用PropertiesFactoryBean配置

<!-- <util:properties/> 标签的实现类是PropertiesFactoryBean,  

 直接使用该类的bean配置,设置其locations属性可以达到一个和上面一样加载多个配置文件的目的 -->  

 <bean id="settings"   

   class="org.springframework.beans.factory.config.PropertiesFactoryBean">  

   <property name="locations">  

  <list>  

    <value>file:/opt/rms/config/rms-mq.properties</value>  

    <value>file:/opt/rms/config/rms-env.properties</value>  

  </list>  

   </property>  

 </bean>  

</beans> 

 

2Client类中Annotation的使用,有三种方式:

  • 使用@Value("#{remoteSettings['remote.ip']}")  来注释一个string类型对象
  • 使用@Value("#{remoteSettings}")  来注释一个Properties对象
  • 使用第二种配置方式还可以使用@Autowired对Properties对象进行注入

 

  • 如果class的静态变量值(static)是获取不到值的

*注意,不管是哪种注入方式,变量都不能被static和final修饰,否则会出现变量获取不到值的情况

如果变量必须是static的,那么可以通过非static的setter方法来进行注入,此时@Value必须修饰在方法上,且set方法不能有static :

private static String CLUSTER_NAME;

@Value("${ES.CLUSTER_NAME}")

public void setClusterName(String clusterName) {

CLUSTER_NAME = clusterName;

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值