有两种方式可以实现用@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>
2、Client类中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; } |