首页 > 代码库 > PropertyPlaceholderConfigurer

PropertyPlaceholderConfigurer

package com.itrus.define;


import java.util.HashMap;

import java.util.Map;

import java.util.Properties;

import org.springframework.beans.BeansException;

import org.springframework.beans.factory.config.ConfigurableListableBeanFactory;

import org.springframework.beans.factory.config.PropertyPlaceholderConfigurer;

public class ProDefineConfigurer extends PropertyPlaceholderConfigurer {

private static Map<String, Object> ctxPropertiesMap;

@Override  

   protected void processProperties(ConfigurableListableBeanFactory beanFactory,  

           Properties props)throws BeansException {  

       super.processProperties(beanFactory, props);  

       ctxPropertiesMap = new HashMap<String, Object>();  

       for (Object key : props.keySet()) {  

           String keyStr = key.toString();  

           String value = http://www.mamicode.com/props.getProperty(keyStr);

           ctxPropertiesMap.put(keyStr, value);  

       }

   }

   public static Object getContextProperty(String name) {  

       return ctxPropertiesMap.get(name);  

   } 

}




notifyEmail=yes

notifySms=no

personApproval=no




PropertyPlaceholderConfigurer