spring读取properties配置

@Component
public class BaseConfigPath {
private static final String configPath = System.getProperty("user.home")+"/code/config";
public String getConfigPath() {
return configPath;
}
}

根据配置文件路径解析properties

<context:property-placeholder location="file:#{baseConfigPath.configPath}/jdbc.properties"/>

获取properties的属性值
<bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">

原文地址:http://blog.51cto.com/12165865/2178860

时间: 2024-11-06 18:31:43

spring读取properties配置的相关文章

玩转spring boot——properties配置

前言 在以往的java开发中,程序员最怕大量的配置,是因为配置一多就不好统一管理,经常出现找不到配置的情况.而项目中,从开发测试环境到生产环境,往往需要切换不同的配置,如测试数据库连接换成生产数据库连接,若有一处配错或遗漏,就会带来不可挽回的损失.正因为这样,spring boot给出了非常理想的解决方案——application.properties.见application-properties的官方文档:http://docs.spring.io/spring-boot/docs/curr

Spring 读取 properties

一.只读取单个 properties 文件 1.在 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.0.xsd" 内

spring读取加密配置信息

描述&背景Spring框架配置数据库等连接等属性时,都是交由 PopertyPlaceholderConfigurer进行读取.properties文件的,但如果项目不允许在配置文件中明文保存密码等重要的连接信息,此时,唯有继承PopertyPlaceholderConfigurer,并重写convertProperty(String propertyName, String propertyValue)方法,该方法是java中少有的传参承载设计模式,在这里,我们可以拿到我们需要进行解密的密文再

读取.properties配置信息

package com.ctcti.webcallcenter.utils; import java.io.FileInputStream;import java.io.FileNotFoundException;import java.io.FileOutputStream;import java.io.IOException;import java.io.InputStream;import java.io.OutputStream;import java.util.Enumeration;

使用Spring的ReloadableResourceBundleMessageSource读取properties配置

应用: 1.后台验证提示信息: 2.异常信息. spring配置文件如下: <bean id="messageSource" class="org.springframework.context.support.ReloadableResourceBundleMessageSource"> <property name="basename" value="classpath:message-resource"

Spring MVC 通过@Value注解读取.properties配置内容

第一步:在applicationContext.xml配置: <bean id="configProperties" class="org.springframework.beans.factory.config.PropertiesFactoryBean"> <property name="locations"> <list> <value>classpath:/config/*.properti

spring读取properties和其他配置文件的几种方式

1.因为spring容器的一些机制,在读取配置文件进行数据库的配置等等是很有必要的,所以我们要考虑配置文件的的读取方式以及各个方式的实用性 2.配置文件的读取方式我这里介绍2种,目的是掌握这2种就可以很好的应用了 3.这里我的properies配置文件如下: driver=com.mysql.jdbc.Driver url=jdbc:mysql://localhost:3306/m_model?useUnicode=true&characterEncoding=utf8 username=roo

spring 读取properties的两种方法

一:直接使用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" xmlns:websocket="http

Spring读取properties

resources下有如下properties文件,modelgid.properties中存着key-value对应关系. ResourceBundle bundle = PropertyResourceBundle.getBundle("modelgid"); Enumeration keys = bundle.getKeys(); while(keys.hasMoreElements()) { String model = String.valueOf(keys.nextElem