码迷,mamicode.com
首页 > 编程语言 > 详细

spring property扩展

时间:2017-08-19 21:11:44      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:figure   row   extend   blog   merge   cto   java   span   port   

复制代码
package com.sf.integration.ident.redis;

import java.io.IOException;
import java.util.Properties;

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

public class SSSPropertyPlaceholderConfigurer extends
PropertyPlaceholderConfigurer {

private static Properties props;

@Override
public Properties mergeProperties() throws IOException {
props = super.mergeProperties();
Property.init(props);
return props;
}
}
复制代码
 

复制代码
package com.sf.integration.ident.redis;

public class Property {
    
    private static java.util.Properties property;

    private Property() {
    }

    static void init(java.util.Properties props) {
        property = props;
    }

    public static String getProperty(String key) {
        return property.getProperty(key);
    }

    public static String getProperty(String key, String defaultValue) {
        return property.getProperty(key, defaultValue);
    }
}

 

spring property扩展

标签:figure   row   extend   blog   merge   cto   java   span   port   

原文地址:http://www.cnblogs.com/fubinhnust/p/7397812.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!