Spring自动注入properties文件

实现spring 自动注入属性文件中的key-value。

1、在applicationContext.xml配置文件中,引入<util />命名空间。

xmlns:util="http://www.springframework.org/schema/util"
    xsi:schemaLocation="
     http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.0.xsd">  

2、配置注解组件扫描,用注解来自动注入

<context:component-scan base-package="com.packagename" ></context:component-scan> 

3、在classpath路径下创建属性文件,如sys.properties

test=sysdata  

4、 让Spring载入属性文件,在applicationContext.xml 中配置

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

5、创建java文件,让Spring注入从资源文件中读取到的属性的值,如下

@Component
public class SysConf {  

    @Value("#{sys.test}")
    private String test;  

    @Value("#{sys.test}")
    public void setTest(String test){
        test = test;
    }  

    @Value("#{sys}")
    public void setSysConf(Properties sys){
        test= sys.getProperty("test");
    }
}

注意:这里的#{sys} 是与第四步的id=sys 相对应的

时间: 2024-11-08 05:19:46

Spring自动注入properties文件的相关文章

使用Spring注解方式注入properties文件内容,并配合Junit4+Spring做单元测试

先看看工作目录,然后再来讲解 1.建立config.properties,我的config.properties内容如下: author_name=luolin project_info=该项目主要是用于写一些demo 2.配置Spring配置文件,读取properties文件,并设置编码格式.大家从我的项目结构图中可以看到我用了两个Spring的配置文件,其实在spring-context.xml中没有配置其他内容,只是配置扫描com.eya.property这个包,大家可能会有疑问为何包的扫

Spring 中注入 properties 中的值

1 <bean id="ckcPlaceholderProperties" class="org.springframework.beans.factory.config.PreferencesPlaceholderConfigurer"> 2 <property name="locations"> 3 <list> 4 <value>classpath:default.properties<

spring如何引用properties文件里的配置

1.PropertyPlaceholderConfigurer类它是把属性中的定义的变量(var)替代,spring的配置文件中使用${var}的占位符 <beans><bean id="configBean" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">           <property name="loc

Spring加载properties文件的两种方式

在项目中如果有些参数经常需要修改,或者后期可能需要修改,那我们最好把这些参数放到properties文件中,源代码中读取properties里面的配置,这样后期只需要改动properties文件即可,不需要修改源代码,这样更加方便.在Spring中也可以这么做,而且Spring有两种加载properties文件的方式:基于xml方式和基于注解方式.下面分别讨论下这两种方式. 1. 通过xml方式加载properties文件 我们以Spring实例化dataSource为例,我们一般会在beans

spring自动注入组件方式

1.basepackages 方式 :br/>最简单@Configuration@ComponentScan(basePackages = {"package.**"})2.注解方式: @Configuration @ComponentScan("package") public class TestConfig { } @Retention(RetentionPolicy.RUNTIME) @Target({ElementType.TYPE}) @Docum

spring boot application.properties文件外部配置

spring boot application.properties文件外部配置 官方文档 原文地址:https://www.cnblogs.com/lwmp/p/9836791.html

spring自动注入的三种方式

所谓spring自动注入,是指容器中的一个组件中需要用到另一个组件(例如聚合关系)时,依靠spring容器创建对象,而不是手动创建,主要有三种方式: 1. @Autowired注解——由spring提供 2. @Resource注解——由JSR-250提供 3. @Inject注解——由JSR-330提供 @Autowired注解的使用方法 @Target({ElementType.CONSTRUCTOR, ElementType.METHOD, ElementType.PARAMETER, E

Spring 中使用Properties文件

Spring提供了加载Properties文件的工具类:org.springframework.beans.factory.config.PropertyPlaceholderConfigurer. 在Spring容器启动时,使用内置bean对属性文件信息进行加载,在bean.xml中添加如下: <!-- spring的属性加载器,加载properties文件中的属性 --> <bean id="propertyConfigurer" class="org.

Spring第八章:Spring自动注入

一.自动注入 1.在 Spring 配置文件中对象名和 ref=”id”id 名相同使用自动注入,可以不配置<property/> 2.两种配置办法 2.1 在<bean>中通过 autowire=”” 配置,只对这个<bean>生效 2.2 在<beans>中通过 default-autowire=””配置,表当当前文件中所有<bean>都是全局配置内容 2.3 自动注入代码 2.3.1测试自动注入的实体类,老师和学生类 package com