Spring 加载properties配置文件

踩坑:

properties配置文件内,定义的key尽量避开关键字

如非要使用关键字,可在<context/> 加载配置文件时加 system-properties-mode=‘NEVER’,指定关闭系统属性加载

开启context命名空间

<beans xmlns = "http://www.springframework.org/schema/beans"
       xmlns:xsi ="http://www.w3.org/2001/XMLSchema-instance"

       xmlns: context = "http://www.springframework.org/schema/context"

       xsi:schemaLocation = "
            http://www.springframework.org/schema/beans
            http://www.springframework.org/schema/beans/spring-beans.xsd

            http://www.springframework.org/schema/context
            http://www.springframework.org/schema/context/spring-context.xsd">
</beans>

使用context命名空间,加载指定的properties配置文件

标准基本加载
<context:property-placeholder location="classpath:jdbc.properties"/>

不加载系统属性
<context:property-placeholder location="classpath:jdbc.properties" system-properties-mode="NEVER"/>

同时加载多个properties文件
<context:property-placeholder location="jdbc.properties,msg.properties"/>

加载所有properties文件
<context:property-placeholder location="classpath:*.properties"/>

从类路径或者JAR包中搜索并加载properties文件
<context:property-placeholder location="classpath*:*.properties"/>

使用${ }读取加载的属性值

<property name="配置key" value="${jdbc.配置key}">

注解实现:Spring 注解大全_王先生加油的博客-CSDN博客

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
好的,关于spring配置文件加载properties文件,可以使用以下几种方式: 1. 使用PropertyPlaceholderConfigurer属性占位符 可以在配置文件中使用${}占位符来引用属性值,同时需要在配置文件引入对应的*.properties文件。在Spring容器启动时,会通过PropertyPlaceholderConfigurer将properties配置文件中的键值对装载到Spring的环境变量中,供${}占位符使用。 例如: ``` <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="locations"> <list> <value>classpath:/config/app.properties</value> </list> </property> </bean> <bean id="user" class="com.example.User"> <property name="name" value="${user.name}"/> <property name="age" value="${user.age}"/> </bean> ``` 在上面的例子中,将classpath:/config/app.properties中的键值对装载到Spring的环境变量中,供${}占位符使用。 2. 使用util命名空间的PropertiesFactoryBean 可以在Spring配置文件中使用util命名空间的PropertiesFactoryBean来装载properties文件中的属性,并且使用${}占位符引用这些属性值。 例如: ``` <util:properties id="appConfig" location="classpath:/config/app.properties"/> <bean id="user" class="com.example.User"> <property name="name" value="${user.name}" /> <property name="age" value="${user.age}" /> </bean> ``` 在上面的例子中,通过util:properties装载classpath:/config/app.properties中的属性。在User bean中使用${}占位符引用属性值。 希望这些方法能够帮到您!

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值