• spring利用注解方式实现Java读取properties属性值


    1. 建立properties文件:我在resource下面建立一个config文件夹,config文件夹里面有mytest.properties文件,文件内容如下:

    sam.username=sam

    sam.password=123456

    2.在spring.xml里面配置一些内容,让tomcat启动时加载下面内容:

    <!-- Java读取properties文件的属性值  begin-->  
          <bean id="configProperties" class="org.springframework.beans.factory.config.PropertiesFactoryBean">
             <property name="locations">
                <list>
                    <value>classpath:/config/mytest.properties</value>
                </list>
            </property>
           </bean>
          <bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PreferencesPlaceholderConfigurer">
                 <property name="properties" ref="configProperties"/>
           </bean>
         <!-- Java读取properties文件的属性值  end-->

    3. 在需要的bean里面进行注入:

    @Component
    public class Test {

        @Value("#{configProperties['sam.username']}")
        private String username;
        @Value("#{configProperties['sam.password']}")
        private String password;
        
        public String getUsername() {
            return username;
        }
        public void setUsername(String username) {
            this.username = username;
        }
        public String getPassword() {
            return password;
        }
        public void setPassword(String password) {
            this.password = password;
        }
        
    }

    4. 在tomcat启动时,注解扫描时,扫到Test类的时,自动读取properties文件的属性值进行对Test对象实例化。

  • 相关阅读:
    通过POST请求上传文件
    接口测试及常用接口测试工具
    maven-surefire-plugin插件
    BDD框架之Cucumber研究
    一分钟认识:Cucumber框架
    ACM团队周赛题解(3)
    C++11新增容器以及元组
    ACM团队周赛题解(2)
    C++11部分特性
    ACM团队周赛题解(1)
  • 原文地址:https://www.cnblogs.com/aisam/p/4812953.html
Copyright © 2020-2023  润新知