美文网首页需要深入研究知识点
Java中读取properties文件内容的六种方式

Java中读取properties文件内容的六种方式

作者: Djbfifjd | 来源:发表于2019-04-08 09:41 被阅读140次

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

    <context:property-placeholder location="classpath:jdbc.properties" 
    ignore-unresolvable="true"/>
    

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

    <bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
     <property name="ignoreUnresolvablePlaceholders" value="true"/>
     <property name="locations">
        <list>
           <value>classpath:jdbc.properties</value>
        </list>
     </property>
    </bean>
    

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

    <!-- 配置组件扫描,springmvc容器中只扫描Controller注解 -->
    <context:component-scan base-package="com.zxt.www" use-default-filters="false">
     <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
    </context:component-scan>
    

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

    <util:properties id="propertiesReader" location="classpath:jdbc.properties"/>
    

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

    <beans xmlns="http://www.springframework.org/schema/beans"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xmlns:context="http://www.springframework.org/schema/context"
     xmlns:util="http://www.springframework.org/schema/util"
     xsi:schemaLocation="http://www.springframework.org/schema/beans
     http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
     http://www.springframework.org/schema/context 
     http://www.springframework.org/schema/context/spring-context-3.2.xsd
     http://www.springframework.org/schema/util 
         http://www.springframework.org/schema/util/spring-util.xsd">
    

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

    <bean id="propertyConfigurer" class="com.hafiz.www.util.PropertyConfigurer">
     <property name="ignoreUnresolvablePlaceholders" value="true"/>
     <property name="ignoreResourceNotFound" value="true"/>
     <property name="locations">
     <list>
     <value>classpath:jdbc.properties</value>
     </list>
     </property>
    </bean>
    

    自定义类PropertyConfigurer的声明如下:

    /**
     * Desc:properties配置文件读取类
     */
    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注解注入即可。

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

    /**
     * Desc:properties文件获取工具类
     */
    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 {
                <!--第一种,通过类加载器进行获取properties文件流-->
                in = PropertyUtil.class.getClassLoader().getResourceAsStream("jdbc.properties");
                <!--第二种,通过类进行获取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);
        }
    }
    

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

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

    <bean id="prop" class="org.springframework.beans.factory.config.PropertiesFactoryBean">
     <!--  这里是PropertiesFactoryBean类,它也有个locations属性,也是接收一个数组,跟上面一样 -->
     <property name="locations">
        <array>
          <value>classpath:jdbc.properties</value>
        </array>
     </property>
    </bean>
    

    6、@Value注解
    配置文件

    string.port=1111
    integer.port=1111
    
    db.link.url=jdbc:mysql://localhost:3306/test
    db.link.driver=com.mysql.jdbc.Driver
    db.link.username=root
    db.link.password=root
    

    类文件:

    import org.springframework.beans.factory.annotation.Value;
    import org.springframework.stereotype.Component;
    
    @Component
    public class MyConf {
    
        @Value("${string.port}")     private int intPort;
        @Value("${string.port}")     private  String stringPort;
        @Value("${db.link.url}")     private String dbUrl;
        @Value("${db.link.driver}")  private String dbDriver;
        @Value("${db.link.username}")private String dbUsername;
        @Value("${db.link.password}")private String dbPassword;
    
        public void show(){
            System.out.println("======================================");
            System.out.println("intPort :   " + (intPort + 1111));
            System.out.println("stringPort :   " + (stringPort + 1111));
            System.out.println("string :   " + dbUrl);
            System.out.println("string :   " + dbDriver);
            System.out.println("string :   " + dbUsername);
            System.out.println("string :   " + dbPassword);
            System.out.println("======================================");
        }
    }
    
    • 类名上指定配置文件@PropertySource可以声明多个,或者使用@PropertySources(@PropertySource(“xxx”),@PropertySource(“xxx”))。
    • 在bean中使用@value注解获取配置文件的值
    @Value("${key}")
    private Boolean timerEnabled;
    

    即使给变量赋了初值也会以配置文件的值为准。

    相关文章

      网友评论

        本文标题:Java中读取properties文件内容的六种方式

        本文链接:https://www.haomeiwen.com/subject/vjnyiqtx.html