`

spring中context:property-placeholder元素详解

 
阅读更多

在spring-context.xml配置中,读取配置文件我们会这样配置,

    <bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">

        <property name="locations">

            <list>

                <value>classpath:conf-${spring.profiles.active}.properties</value>

            </list>

        </property>

        <property name="fileEncoding" value="utf-8"/>

    </bean>

殊不知,还有个容易被忽略的标签,<context:property-placeholder/>

为了简化PropertyPlaceholderConfigurer的使用,Spring提供了<context:property-placeholder/>元素。

下面给出了配置示例,启用它后,开发者便不用配置PropertyPlaceholderConfigurer对象了。

 

<context:property-placeholder location="userinfo.properties"/> 

它的功能非常丰富,如果它未找到${xxx}中定义的xxx键,它还会去JVM系统属性(System.getProperty())和环境变量(System.getenv())中寻找。

 

通过启用systemPropertiesMode和searchSystemEnvironment属性,开发者能够控制这一行为。

分享到:
评论

相关推荐

    Spring中property-placeholder的使用与解析详解

    Spring 中 property-placeholder 的使用与解析详解 -property-placeholder 是 Spring 框架中的一种机制,用于加载和解析 properties 文件中的配置信息。在本文中,我们将详细介绍 property-placeholder 的使用和...

    spring4-hibernate4-struts2整合

    &lt;context:property-placeholder location="classpath:config.properties"/&gt; &lt;!-- 自动扫描dao和service包 --&gt; &lt;context:component-scan base-package="me.gacl.dao,me.gacl.service"/&gt; ``` 4. **创建配置...

    spring与mybatis整合配置文档

    这里通过`&lt;context:property-placeholder&gt;`加载了`dbconfig.properties`中的配置项,确保了数据库连接参数的外部化管理。 ```xml &lt;context:property-placeholder location="classpath:dbconfig.properties"/&gt; ...

    ssm 框架配置

    &lt;context:property-placeholder location="classpath:db.properties"/&gt; &lt;!-- 配置数据源 --&gt; &lt;property name="driverClassName" value="${jdbc.driver}" /&gt; &lt;property name="url" value="${jdbc.url}" /&gt; ...

    spring约束dtd.zip

    首先,DTD是一种定义XML文档结构的规范,它描述了文档中元素和属性的合法组合。在Spring框架中,DTD文件用于定义Spring容器如何解析和理解XML配置文件,确保配置的正确性和一致性。例如,`spring-beans-4.0.xsd`是...

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

    在Spring XML配置文件中,可以使用context:property-placeholder标签来加载Properties配置文件。例如: ``` &lt;context:property-placeholder ignore-unresolvable="true" location="classpath:redis-key.properties"/...

    详解SpringMVC加载配置Properties文件的几种方式

    这是最常用的方式,通过在Spring的配置文件(如`spring.xml`)中引入`context`命名空间,并使用`context:property-placeholder`标签来指定Properties文件的位置。 ```xml &lt;?xml version="1.0" encoding="UTF-8"?&gt; ...

    Spring加载properties文件的两种方式实例详解

    在Spring中,我们可以使用 `&lt;context:property-placeholder location=""/&gt;` 标签来加载properties配置文件。location是配置文件的路径,我们可以在工程目录的src下新建一个conn.properties文件,里面写上dataSource...

    SSM框架笔记

    - `&lt;context:property-placeholder&gt;`: 引用外部属性文件。 - `&lt;mvc:resources&gt;`: 配置静态资源路径。 - `&lt;tx:advice&gt;`: 配置事务通知。 - `&lt;tx:annotation-driven&gt;`: 开启基于注解的事务管理。 - `&lt;tx:jta-...

    SSH框架applicationContext.xml头部文件

    - **资源加载**:通过`&lt;context:property-placeholder&gt;`来指定外部属性文件的位置,便于在程序中使用这些属性值。 ##### 3. AOP配置 - **切点定义**:通过`&lt;aop:pointcut&gt;`标签定义切点表达式,用于匹配需要拦截的...

    mongodb整合spring文档

    --&lt;context:property-placeholder location="classpath:config/mongodb.properties"/&gt;--&gt; &lt;!-- 定义mongo对象,对应的是mongodb官方jar包中的Mongo,replica-set设置集群副本的ip地址和端口 --&gt; &lt;mongo:mongo id=...

    BBSport_java项目总结1

    此外,`&lt;context:property-placeholder&gt;`元素用于从外部属性文件读取配置值,实现了配置与代码的完全分离。 通过以上分析,我们可以看到BBSport_java项目是一个高度模块化、灵活且易于维护的系统。Struts、JPA和...

    详解五种方式让你在java中读取properties文件内容不再是难题

    在Spring配置文件中,可以通过`&lt;context:property-placeholder&gt;`标签来加载properties文件。例如,配置文件`jdbc.properties`位于类路径下,可以这样设置: ```xml &lt;context:property-placeholder location=...

    spring profile 多环境配置管理详解

    Spring Profile 是 Spring 框架中的一个重要特性,它允许开发者为不同的环境(如开发、测试、生产等)创建和管理独立的配置。在多环境配置管理中,Spring Profile 提供了方便的方式来切换不同环境下的配置,确保每个...

    ssm整合以及相关练习文档

    &lt;context:property-placeholder location="classpath:jdbc.properties"/&gt; &lt;!-- 配置数据源 --&gt; &lt;property name="driverClassName" value="${jdbc.driver}" /&gt; &lt;property name="url" value="${jdbc.url}" /&gt; ...

    基于java的企业级应用开发:整合环境搭建.ppt

    &lt;context:property-placeholder location="classpath:db.properties"/&gt; &lt;property name="driverClassName" value="${jdbc.driver}" /&gt; ... &lt;bean id="transactionManager" class="org.springframework.jdbc....

    spring无法读取properties文件数据问题详解

    &lt;context:property-placeholder ignore-unresolvable="true" location="classpath:/jdbc.properties, classpath*:/config.properties"/&gt; ``` 问题三:诊断问题 在诊断 Spring 无法读取 properties 文件数据...

    详解spring applicationContext.xml 配置文件

    4. `&lt;context:property-placeholder&gt;`:这是一个特殊的bean,用于加载外部属性文件(如`jdbc.properties`),使得在配置中可以使用`${}`引用这些属性,避免硬编码。 5. `&lt;dataSource&gt;`:这里配置了数据源,Druid是...

    Spring中利用配置文件和@value注入属性值代码详解

    Spring中利用配置文件和@Value注解注入属性值代码详解 在Spring框架中,配置文件和@Value注解是两个常用的注入属性值的方法。本文将详细介绍如何使用配置文件和@Value注解注入属性值,并提供了代码示例。 一、简单...

Global site tag (gtag.js) - Google Analytics