zoukankan      html  css  js  c++  java
  • Spring加载Properties配置文件的几种方式

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

    在spring的配置文件中添加如下声明

    <context:property-placeholder ignore-unresolvable="true" location="classpath:jdbc.properties"/>

    引用值时,注意使用$引用需要的值
    1.在datasource.xml中

    <!-- 配置数据源 -->
    <property name="url" value="${jdbc.url}" />
    <property name="username" value="${jdbc.username}" />
    <property name="password" value="${jdbc.password}" />

    2.在java代码中

    @Value("${targetVal}")  
    private String targetVal; // 注意:这里变量不能定义成static

    二:通过 util:properties 标签实现配置文件加载

    在spring的配置文件中添加如下声明

    <util:properties id="jdbc" local-override="true" location="classpath:jdbc.properties"/>

    需要注意几点,这种方式需要在spring配置文件头部进行如下声明

    xmlns:util="http://www.springframework.org/schema/util"
    xsi:schemaLocation="http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.2.xsd"

    在引用值时,注意使用#
    1.在xml中使用

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

    2.在java代码中

    @Value(value="#{jdbc['targetVal']}")
    private String targetVal;

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

    在java类文件中使用 PropertySource 注解:

    @PropertySource(value={"classpath:jdbc.properties"})
    public class ReadProperties {
    
        @Value(value="${jdbc.username}")
        private String username;
    
    }

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

    <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
        <property name="locations">
            <list>
                <value>/WEB-INF/mail.properties</value>  
                <value>classpath:jdbc.properties</value>
            </list>
        </property>
    </bean>

    取值与方法一相同

    五:使用 PropertiesFactoryBean 加载

    <bean id="propertiesReader" class="org.springframework.beans.factory.config.PropertiesFactoryBean">
        <property name="locations">
            <list>
                <value>classpath*:/conf/application.properties</value>
                <value>classpath*:/conf/streamserver.properties</value>
            </list>
        </property>
    </bean>

    取值与方法二相同

    以上是常见的取值方式,下一篇将会介绍context:property-placeholder常用的属性

    转 : https://blog.csdn.net/Cool_Coding/article/details/90617687

  • 相关阅读:
    UIView+ViewController.h 点击控制器上视图,使视图push下个视图控制的封装
    Touch Demo
    layoutSubviews与drawRect
    UI NS CG CF 区别
    CALayer
    关于CALayer的困惑
    pypy 对接阿里短信平台
    mysql去掉默认值
    GCC升级
    jemalloc 测试
  • 原文地址:https://www.cnblogs.com/fps2tao/p/12810013.html
Copyright © 2011-2022 走看看