时间:2021-05-19
一、通过 context:property-placeholder 标签实现配置文件加载
1、用法示例: 在spring.xml配置文件中添加标签
复制代码 代码如下:<context:property-placeholder ignore-unresolvable="true" location="classpath:redis-key.properties"/>
2、在 spring.xml 中使用配置文件属性:
3、在java文件中使用:
@Value("${jdbc_url}") ivate String jdbcUrl; // 注意:这里变量不能定义成static二、通过 util:properties 标签实现配置文件加载
1、用法示例: 在spring.xml配置文件中添加标签
复制代码 代码如下:<util:properties id="util_Spring" local-override="true" location="classpath:jeesite.properties"/>
2、在spring.xml 中使用配置文件属性:
<property name="username" value="#{util_Spring['jdbc.username']}" /> <property name="password" value="#{util_Spring['jdbc.password']}" />3、在java文件中使用:
@Value(value="#{util_Spring['UTIL_SERVICE_ONE']}") private String UTIL_SERVICE_ONE;三、通过 @PropertySource 注解实现配置文件加载
1、用法示例:在java类文件中使用 PropertySource 注解:
@PropertySource(value={"classpath:redis-key.properties"}) public class ReadProperties { @Value(value="${jdbc.username}") private String USER_NAME; }2、在java文件中使用:
四、通过 PropertyPlaceholderConfigurer 类读取配置文件
1、用法示例:在 spring.xml 中使用 <bean>标签进行配置
<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="locations"> <list> <value>classpath:redis-key.properties</value> </list> </property> </bean>2、 PropertyPlaceholderConfigurer 配置方法,等价于 方式一,用法参考方法一。
五、 还可以使用 org.springframework.beans.factory.config.PropertiesFactoryBean 加载,这里不再逐一列举了。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
SpringBoot设置接口访问超时时间有两种方式一、在配置文件application.properties中加了spring.mvc.async.reques
前言在项目开发中经常会用到配置文件,配置文件的存在解决了很大一份重复的工作。今天就分享四种在Springboot中获取配置文件的方式。注:前三种测试配置文件为s
工作中最常见的配置文件有四种:普通key=value的配置文件、Json格式的配置文件、HTML格式的配置文件以及YMAML配置文件。这其中以第一种居多,后三种
全局配置文件为mybatis-config.xml1、properties标签可以使用properties来引入外部properties配置文件的内容引入方式有
Spring容器是一个大工厂,负责创建、管理所有的Bean。Spring容器支持2种格式的配置文件:xml文件、properties文件,最常用的是xml文件。