博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
spring- properties 读取的五种方式
阅读量:6709 次
发布时间:2019-06-25

本文共 3996 字,大约阅读时间需要 13 分钟。

转至:

方式1.通过context:property-placeholder加载配置文件jdbc.properties中的内容

  上面的配置和下面配置等价,是对下面配置的简化

classpath:jdbc.properties

注意:这种方式下,如果你在spring-mvc.xml文件中有如下配置,则一定不能缺少下面的红色部分,关于它的作用以及原理,参见另一篇博客:

  方式2.使用注解的方式注入,主要用在java代码中使用注解注入properties文件中相应的value值

classpath:jdbc.properties

  方式3.使用util:properties标签进行暴露properties文件中的内容

注意:使用上面这行配置,需要在spring-dao.xml文件的头部声明以下红色的部分

  方式4.通过PropertyPlaceholderConfigurer在加载上下文的时候暴露properties到自定义子类的属性中以供程序中使用

classpath:jdbc.properties

自定义类PropertyConfigurer的声明如下:

package com.hafiz.www.util;import org.springframework.beans.BeansException;import org.springframework.beans.factory.config.ConfigurableListableBeanFactory;import org.springframework.beans.factory.config.PropertyPlaceholderConfigurer;import java.util.Properties;/** * Desc:properties配置文件读取类 * Created by hafiz.zhang on 2016/9/14. */public class PropertyConfigurer extends PropertyPlaceholderConfigurer {    private Properties props;       // 存取properties配置文件key-value结果    @Override    protected void processProperties(ConfigurableListableBeanFactory beanFactoryToProcess, Properties props)                            throws BeansException {        super.processProperties(beanFactoryToProcess, props);        this.props = props;    }    public String getProperty(String key){        return this.props.getProperty(key);    }    public String getProperty(String key, String defaultValue) {        return this.props.getProperty(key, defaultValue);    }    public Object setProperty(String key, String value) {        return this.props.setProperty(key, value);    }}

使用方式:在需要使用的类中使用@Autowired注解注入即可。

  方式5.自定义工具类PropertyUtil,并在该类的static静态代码块中读取properties文件内容保存在static属性中以供别的程序使用

package com.hafiz.www.util;import org.slf4j.Logger;import org.slf4j.LoggerFactory;import java.io.*;import java.util.Properties;/** * Desc:properties文件获取工具类 * Created by hafiz.zhang on 2016/9/15. */public class PropertyUtil {    private static final Logger logger = LoggerFactory.getLogger(PropertyUtil.class);    private static Properties props;    static{        loadProps();    }    synchronized static private void loadProps(){        logger.info("开始加载properties文件内容.......");        props = new Properties();        InputStream in = null;        try {
       
in = PropertyUtil.class.getClassLoader().getResourceAsStream("jdbc.properties");       
//in = PropertyUtil.class.getResourceAsStream("/jdbc.properties"); props.load(in); } catch (FileNotFoundException e) { logger.error("jdbc.properties文件未找到"); } catch (IOException e) { logger.error("出现IOException"); } finally { try { if(null != in) { in.close(); } } catch (IOException e) { logger.error("jdbc.properties文件流关闭出现异常"); } } logger.info("加载properties文件内容完成..........."); logger.info("properties文件内容:" + props); } public static String getProperty(String key){ if(null == props) { loadProps(); } return props.getProperty(key); } public static String getProperty(String key, String defaultValue) { if(null == props) { loadProps(); } return props.getProperty(key, defaultValue); }}

说明:这样的话,在该类被加载的时候,它就会自动读取指定位置的配置文件内容并保存到静态属性中,高效且方便,一次加载,可多次使用。

四、注意事项及建议

  以上五种方式,前三种方式比较死板,而且如果你想在带有@Controller注解的Bean中使用,你需要在SpringMVC的配置文件spring-mvc.xml中进行声明,如果你想在带有@Service、@Respository等非@Controller注解的Bean中进行使用,你需要在Spring的配置文件中spring.xml中进行声明。原因请参见另一篇博客:

  我个人比较建议第四种和第五种配置方式,第五种为最好,它连工具类对象都不需要注入,直接调用静态方法进行获取,而且只一次加载,效率也高。而且前三种方式都不是很灵活,需要修改@Value的键值。

转载地址:http://xzalo.baihongyu.com/

你可能感兴趣的文章
linux学习(1)--基本知识
查看>>
自动显示隐藏布局的listView
查看>>
redis高可用 - redis集群
查看>>
20165201 2017-2018-2 《Java程序设计》第9周学习总结
查看>>
BST(二叉树搜索树)
查看>>
个人中心标签页导航
查看>>
华为AR1220
查看>>
索引总结篇
查看>>
SaltStack为所有minion配置yum源
查看>>
[Array]Minimum Size Subarray Sum
查看>>
REST及RESTful的实现
查看>>
ListView与RadioButton组合——自定义单选列表
查看>>
[POJ3111]K Best
查看>>
洛谷 1290 欧几里德的游戏
查看>>
bzoj千题计划186:bzoj1048: [HAOI2007]分割矩阵
查看>>
Mybatis学习(8)逆向工程
查看>>
java操作Excel之POI(1)
查看>>
c++中键盘的单个按键的刷新
查看>>
查找接口的实现类
查看>>
2013读书计划
查看>>