spring中获得属性文件键值对,在程序中使用

9 篇文章 0 订阅
!-- 	<context:property-placeholder -->
<!-- 		location="/WEB-INF/jdbc-config/jdbc.properties" /> -->
		<bean id="propertyConfigurer"  class="com.chinaGPS.nss.util.MyPropertyPlaceholderConfigurer">
		        <property name="locations">
		            <list>
		                <value>/WEB-INF/jdbc-config/httpRemote.properties</value>
		            </list>
		        </property>
		 </bean>

 

package com.chinaGPS.nss.util;

import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Properties;

import org.apache.commons.lang.StringUtils;
import org.springframework.beans.BeansException;
import org.springframework.beans.factory.config.ConfigurableListableBeanFactory;
import org.springframework.beans.factory.config.PropertyPlaceholderConfigurer;

import com.chinaGPS.nss.constant.SystemConst;

/**加载属性类
 * @author zhz
 *
 */
public class MyPropertyPlaceholderConfigurer extends PropertyPlaceholderConfigurer {

  private Map<String, String> resolvedProps;//将属性保存起来

  @Override
  protected void processProperties(ConfigurableListableBeanFactory beanFactoryToProcess,
      Properties props) throws BeansException {
      super.processProperties(beanFactoryToProcess, props);
      resolvedProps = new HashMap<String, String>();
      for (Object key : props.keySet()) {
          String keyStr = key.toString();
          
          if(StringUtils.equals(keyStr, "auto_craw"))
          {
        	  String tmp = parseStringValue(props.getProperty(keyStr), props,new HashSet());
        	  if(StringUtils.equalsIgnoreCase(tmp, "on"))
  				SystemConst.AUTOCRAW  = "on";		
  			if(StringUtils.equalsIgnoreCase(tmp, "off"))
  				SystemConst.AUTOCRAW="off";
  			else
  				continue;
          }
//          resolvedProps.put(keyStr, parseStringValue(props.getProperty(keyStr), props,
//                  new HashSet()));
      }
  }
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值