美文网首页
java Spring读取properties文件的注意点

java Spring读取properties文件的注意点

作者: FantasyYoung | 来源:发表于2018-08-08 21:57 被阅读13次

通过@value读取properties注意点

  • applicationContext文件读取文件需要配置成为多文件读取方式

    <bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
            <property name="locations">
                <list>
                    <!-- jdbc配置 -->
                    <value>classpath:config/jdbc.properties</value>
                    <!-- 通用配置 -->
                    <value>classpath:config/appConfig.properties</value>
                </list>
            </property>
        </bean>
    
    
  • 需要将java配置到service.impl中,就是需要spring service层级能够扫描到

    @Component("commonConfig")
    public class CommonConfig {
    
        @Value("${config.isaKey}")
        private String isaKey;
    
        @Value("${config.doubankey}")
        private String doubanKey;
    
        @Value("${config.juheKey}")
        private String juheKey;
    
        @Value("${config.oneUuid}")
        private String oneUuid;
    
        public String getIsaKey() {
            return isaKey;
        }
    
        public String getDoubanKey() {
            return doubanKey;
        }
    
        public String getJuheKey() {
            return juheKey;
        }
    
        public String getOneUuid() {
            return oneUuid;
        }
    }
    

相关文章

网友评论

      本文标题:java Spring读取properties文件的注意点

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