zoukankan      html  css  js  c++  java
  • 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对象实例化。

  • 相关阅读:
    LeetCode:204. 计数质数
    LeetCode:203. 移除链表元素
    LeetCode:202. 快乐数
    LeetCode:191. 位1的个数
    LeetCode:190. 颠倒二进制位
    LeetCode:189. 旋转数组
    LeetCode:187. 重复的DNA序列
    LeetCode:165. 比较版本号
    LeetCode:164. 最大间距
    LeetCode:155. 最小栈
  • 原文地址:https://www.cnblogs.com/aisam/p/4812953.html
Copyright © 2011-2022 走看看