Spring使⽤SpEL表达式读取properties配置⽂件的两种⽅式第⼀种:
config.properties:
index.version=v1
spring配置⽂件,加载config.properties:
<!-- 获取properties中的值 -->
<bean id="configProperties" class="org.springframework.fig.PropertiesFactoryBean">
<property name="locations">
<list>
<value>classpath:config.properties</value>
</list>
</property>
extjs获取当前日期
</bean>
<!-- Spring的动态变量,能在bean中直接调⽤ -->
<bean id="propertyPlaceholderConfigurer" class="org.springframework.fig.PropertyPlaceholderConfigurer">
<property name="properties" ref="configProperties" />
</bean>想自学编程软件
注⼊使⽤:
@Value("#{configProperties['index.version']}")
public String version;
第⼆种:
config.properties:
index.version=v1
matlab盗版安装教程添加⼀个java bean⽤于读取properties⽂件中的配置:
@Component("config")
public class Config {
@Value("${index.version}")
public String indexVersion;
public String getIndexVersion() {
return indexVersion;
}
public void setIndexVersion(String indexVersion) {
this.indexVersion = indexVersion;
}
}
spring配置⽂件添加注解扫描:
properties文件用什么打开
<context:annotation-config />
<context:component-scan base-package="com.***.config"/>
spring配置加载properties:
<context:property-placeholder location="classpath:config.properties"/>随机数字表分2组方法
注⼊使⽤:
@Value("#{config.indexVersion}")
public String version;
smtp服务器用来补充:
还有⼀种⽅式,就是普通的加载使⽤⽅式,没有⽤到SpEL,我们看看这种⽅式。
这种⽅式的配置⽂件内容要变⼀下了,不能再是index.version=v1这种形式,要改为version=v1或者index-version=v1,因为带有(.)的这种形式会导致报错。
这时的spring配置:
<util:properties id="config" location="classpath:config.properties"/>
⽤法:
@Value("#{config.version}")
public String version;
参考:
blog.csdn/yh_zeng2/article/details/76222905
blog.csdn/sunhuwh/article/details/38945445

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。