`

编码方式获取Spring中PropertyPlaceholderConfigurer的属性

阅读更多
applicationContext.xml配置文件
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
           http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
	<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
		<property name="location">
			<value>name.properties</value>
		</property>
	</bean>
	<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
		<property name="location">
			<value>birthday.properties</value>
		</property>
	</bean>
</beans>

birthday.properties属性文件
birthday=2012-12-12

name.properties属性文件
name=kid

SpringPropertyResourceReader.java
package utils;
import java.lang.reflect.Method;
import java.util.Properties;
import org.springframework.beans.factory.config.BeanFactoryPostProcessor;
import org.springframework.beans.factory.config.PropertyResourceConfigurer;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.AbstractApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.springframework.core.io.support.PropertiesLoaderSupport;
public class SpringPropertyResourceReader {
	private static ApplicationContext applicationContext=new 
	ClassPathXmlApplicationContext("applicationContext.xml");
	private static AbstractApplicationContext abstractContext =
	(AbstractApplicationContext) applicationContext;
	private static Properties properties=new Properties();
	static{
		try{
			// get the names of BeanFactoryPostProcessor
			String[] postProcessorNames = abstractContext
					.getBeanNamesForType(BeanFactoryPostProcessor.class,true,true);
			
			for (String ppName : postProcessorNames) {
				// get the specified BeanFactoryPostProcessor
				BeanFactoryPostProcessor beanProcessor=
				abstractContext.getBean(ppName, BeanFactoryPostProcessor.class);
				// check whether the beanFactoryPostProcessor is 
				// instance of the PropertyResourceConfigurer
				// if it is yes then do the process otherwise continue
				if(beanProcessor instanceof PropertyResourceConfigurer){
					PropertyResourceConfigurer propertyResourceConfigurer=
							(PropertyResourceConfigurer) beanProcessor;
					
					// get the method mergeProperties 
					// in class PropertiesLoaderSupport
					Method mergeProperties=PropertiesLoaderSupport.class.
						getDeclaredMethod("mergeProperties");
					// get the props
					mergeProperties.setAccessible(true);
					Properties props=(Properties) mergeProperties.
					invoke(propertyResourceConfigurer);
					
					// get the method convertProperties 
					// in class PropertyResourceConfigurer
					Method convertProperties=PropertyResourceConfigurer.class.
					getDeclaredMethod("convertProperties", Properties.class);
					// convert properties
					convertProperties.setAccessible(true);
					convertProperties.invoke(propertyResourceConfigurer, props);
					
					properties.putAll(props);
				}
			}
			
		}catch(Exception e){
			throw new RuntimeException(e);
		}
	}
	
	public static String getProperty(String propertyName){
		return properties.getProperty(propertyName);
	}
}

测试代码Main.java
package main;

import utils.SpringPropertyResourceReader;
public class Main {
	public static void main(String[] args) throws Exception {
		System.out.println(SpringPropertyResourceReader.getProperty("name"));
		System.out.println(SpringPropertyResourceReader.getProperty("birthday"));
	}
}
分享到:
评论

相关推荐

    Spring中属性文件properties的读取与使用详解

    这是一个内置的Spring类,负责解析属性文件并将其中的键值对注入到其他bean的属性中。在`bean.xml`配置文件中添加以下内容: ```xml &lt;bean id="propertyConfigurer" class="org.springframework.beans.factory....

    4.Spring应用扩展.pptx

    例如,我们可以设置`jndiName`属性,指定引用的JNDI数据源名称,这样Spring就能从服务器容器中获取DataSource资源,这种方式在分布式或集群环境下尤其有用。 然后,我们要理解Spring中Bean的作用域。Bean的作用域...

    第十九章 Spring Environment 抽象(Environment Abstraction)1

    - **属性占位符处理**:Environment接口可以用来解析和替换配置属性中的占位符,如`${property.name}`。 - **类型转换**:除了基本的字符串替换,Environment还支持将配置属性转换为其他数据类型,如整数、布尔值...

    java hibernate不同数据库之间的动态切换

    - 使用Spring框架:如果项目中使用了Spring,可以通过Spring的`PropertyPlaceholderConfigurer`或`@Value`注解来读取配置。 2. **动态加载SessionFactory** - 在初始化阶段,根据当前的环境或配置读取相应的...

    SSM框架常用核心接口和类.txt

    - **应用场景**: Spring MVC中最常用的处理器映射方式。 **RequestMappingHandlerMapping** - **功能**: 基于@RequestMapping注解的处理器映射器。 - **应用场景**: 最常用的处理器映射方式,适用于复杂的URL映射...

Global site tag (gtag.js) - Google Analytics