亲宝软件园·资讯

展开

spring value注解注入 详解Spring通过@Value注解注入属性的几种方式

Ydoing 人气:0
想了解详解Spring通过@Value注解注入属性的几种方式的相关内容吗,Ydoing在本文为您仔细讲解spring value注解注入的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:spring,value注解注入,spring,注解注入,Spring,Value,注解,下面大家一起来学习吧。

场景

假如有以下属性文件dev.properties, 需要注入下面的tag

tag=123

通过PropertyPlaceholderConfigurer

<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
  <property name="location" value="dev.properties" />
</bean>

代码

@Value("${tag}")
private String tag;

通过PreferencesPlaceholderConfigurer

<bean id="appConfig" class="org.springframework.beans.factory.config.PreferencesPlaceholderConfigurer">
  <property name="location" value="dev.properties" />
</bean>

代码:

@Value("${tag}")
private String tag;

通过PropertiesFactoryBean

  <bean id="config" class="org.springframework.beans.factory.config.PropertiesFactoryBean">
    <property name="location" value="dev.properties" />
  </bean>

代码:

@Value("#{config['tag']}")
private String tag;

通过util:properties

效果同PropertiesFactoryBean一样

代码:

@Value("#{config['tag']}")
private String tag;

其他方式

有时也可以不通过文件,直接写字面量

<bean id="appConfig" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
  <!--<property name="location" value="classpath:${env}.properties" />-->
  <property name="properties">
    <props>
      <prop key="tag">123</prop>
    </props>
  </property>
</bean>

代码:

@Value("${tag}")
private String tag;

加载全部内容

相关教程
猜你喜欢
用户评论