服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - Java教程 - 详解Spring加载Properties配置文件的四种方式

详解Spring加载Properties配置文件的四种方式

2021-04-30 15:14HaHa_Sir Java教程

这篇文章主要介绍了详解Spring加载Properties配置文件的四种方式,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧

一、通过 context:property-placeholder 标签实现配置文件加载

1、用法示例: 在spring.xml配置文件中添加标签    

 

复制代码 代码如下:
<context:property-placeholder ignore-unresolvable="true" location="classpath:redis-key.properties"/> 

 

2、在 spring.xml 中使用配置文件属性:

?
1
2
3
4
<!-- 基本属性 url、user、password -->
<property name="url" value="${jdbc.url}" />
<property name="username" value="${jdbc.username}" />
<property name="password" value="${jdbc.password}" />

3、在java文件中使用:

?
1
2
@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 中使用配置文件属性:

?
1
2
<property name="username" value="#{util_spring['jdbc.username']}" />
<property name="password" value="#{util_spring['jdbc.password']}" />

3、在java文件中使用:

?
1
2
@value(value="#{util_spring['util_service_one']}")
 private string util_service_one;

三、通过 @propertysource 注解实现配置文件加载

1、用法示例:在java类文件中使用 propertysource 注解:

?
1
2
3
4
5
@propertysource(value={"classpath:redis-key.properties"})
public class readproperties {
@value(value="${jdbc.username}")
 private string user_name;
}

2、在java文件中使用:

?
1
2
@value(value="${jdbc.username}")
 private string user_name;

四、通过 propertyplaceholderconfigurer 类读取配置文件

1、用法示例:在 spring.xml 中使用 <bean>标签进行配置

?
1
2
3
4
5
6
7
<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  加载,这里不再逐一列举了。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/haha_sir/article/details/79105951

延伸 · 阅读

精彩推荐