Spring Properties 使用

2019-03-04  本文已影响0人  幽澜先生

对 Spring 里面的 Properties 不理解的开发者可能会觉得有点乱,主要是因为配置方式很多种,使用方式也很多种。

本文不是原理分析、源码分析文章,只是希望可以帮助读者更好地理解和使用 Spring Properties。

Properties 的使用

本文的读者都是使用过 Spring 的,先来看看 Properties 是怎么使用的,Spring 中常用的有以下几种使用方式:

1. 在 xml 配置文件中使用

即自动替换 ${} 里面的值。

<bean id="xxx" class="com.javadoop.Xxx">
      <property name="url" value="${javadoop.jdbc.url}" />
</bean>

2. 通过 @Value 注入使用

注意是 ${}

@Value("${javadoop.jdbc.url}")

1) #{expression?:default value}

 #{} 花括号里面的是SpEL表达式(即Spring Expression Language),?: 前面的是表达式,?: 后面的是默认值,这种方式非常地灵活,可以直接取bean对象的字段值!SpEL表达式的介绍,

 但是,这种方式下,有个缺陷,那就是 properties配置文件中的属性名称不能带点,否则取不到值,会报错

如 file.uploadpath = E:\360Downloads\temp , 读取该属性值,就会报错,如下

    @Value("#{prop.file.uploadpath}")
    private String uploadPath;
Caused by: org.springframework.expression.spel.SpelEvaluationException: EL1008E: Property or field 
方式二:
<!-- 
        用途:可以使用@Value("#{prop.属性名}")注解读取properties文件配置的值,再给字段赋值
             方法1:注解在字段上,给字段赋值
             方法2:注解在字段的setter方法中赋值
             注意:@Value("#{prop.属性名}") 中的 prop 是 注册的PropertiesFactoryBean的 Bean ID
-->
<util:properties id="prop" location="classpath:fileupload.properties"/>
       可以清楚的看到,方式二,非常地简洁,但是如果要使用多个properties就可能实现不了,其实可以通过通配符实现,会有点麻烦。

接下来,看demo

fileupload.properties文件:

name=zengyanhui
age=12
Test.java:

package edu.mvcdemo.service;
 
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Component;
 
@Component("test")
@Scope("singleton")
public class Test {
    @Value("#{prop.name}")
    private String name;
    
    @Value("#{prop.age}")
    private String age;
    
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getAge() {
        return age;
    }
 
    public void setAge(String age) {
        this.age = age;
    }
    
}
SpringBeanUtilsTest.java:

package edu.mvcdemo.utils;
 
import edu.mvcdemo.service.Test;
import junit.framework.TestCase;
 
public class SpringBeanUtilsTest  extends TestCase{
 
    public void test1(){
        SpringBeanUtils.setFilePath("src/springCfg/applicationContext-base.xml");
        Test test = (Test) SpringBeanUtils.getBean("test");
        System.out.println("name="+test.getName());
        System.out.println("age="+test.getAge());
    }
    
}
程序运行结果:

[INFO][2017-07-27 23:50:59][AbstractApplicationContext:583] - Refreshing org.springframework.context.support.FileSystemXmlApplicationContext@b8d805: startup date [Thu Jul 27 23:50:59 CST 2017]; root of context hierarchy
[INFO][2017-07-27 23:50:59][XmlBeanDefinitionReader:317] - Loading XML bean definitions from file [D:\EclipseWorkspace\MavenSpringMvcDemo\src\springCfg\applicationContext-base.xml]
name=zengyanhui
age=12
2)${property:default value}

    ${}这种值,只用来读取properties配置文件中的属性值, :  前面的是属性名称,:  后面的是默认值。这种类型的值,却可以读取带点的属性值,如 file.uploadpath = E:\\360Downloads\\temp,可以使用@Value("${file.uploadpath}")读取

     要使用这种方式的Value,有两种实现方式,如下

     方式一:

<!-- 
        用途1:Spring的xml配置文件中,可以通过${属性名}使用properties文件配置的值
        用途2:可以使用@Value("${属性名}")注解读取properties文件配置的值,再给字段赋值
               方法1:注解在字段上,给字段赋值
               方法2:注解在字段的setter方法中赋值           
-->
<bean id="propertyConfigurer"  
      class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">  
      <property name="location">  
          <value>classpath:fileupload.properties</value>  
      </property>  
</bean>  
      方式二:

<!-- 
        用途1:Spring的xml配置文件中,可以通过${属性名}使用properties文件配置的值
        用途2:可以使用@Value("${属性名}")注解读取properties文件配置的值,再给字段赋值
               方法1:注解在字段上,给字段赋值
               方法2:注解在字段的setter方法中赋值           
-->
<context:property-placeholder  location="classpath:fileupload.properties"/>
可以清楚的看到,方式二,非常地简洁,但是如果要使用多个properties就可能实现不了,其实可以通过通配符实现,会有点麻烦。

下面看demo:

package edu.mvcdemo.service;
 
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Component;
 
/**
 * @编写人: yh.zeng
 * @编写时间:2017-7-26 下午11:04:10
 * @文件描述: todo
 */
@Component("test")
@Scope("singleton")
public class Test {
    @Value("${name}")
    private String name;
    
    @Value("${age}")
    private String age;
    
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getAge() {
        return age;
    }
 
    public void setAge(String age) {
        this.age = age;
    }
 
}
程序运行结果:

[INFO][2017-07-27 23:50:59][AbstractApplicationContext:583] - Refreshing org.springframework.context.support.FileSystemXmlApplicationContext@b8d805: startup date [Thu Jul 27 23:50:59 CST 2017]; root of context hierarchy
[INFO][2017-07-27 23:50:59][XmlBeanDefinitionReader:317] - Loading XML bean definitions from file [D:\EclipseWorkspace\MavenSpringMvcDemo\src\springCfg\applicationContext-base.xml]
name=zengyanhui
age=12
 (3)#{'${}'}

    这种类型的Value值,是#{}里面嵌套${}使用,所以必须按照上述的(1)(2)两种类型的实现方式,配置properties文件,才可以使用这种方式的值

    @Value("#{'${age}'}")
    private String age;
 

### 3\. 通过 Environment 获取

此法有需要注意的地方。并不是所有的配置方式都支持通过 Environment 接口来获取属性值,亲测只有使用注解 @PropertySource 的时候可以用,否则会得到 null,至于怎么配置,下面马上就会说。


@Autowired
private Environment env;

public String getUrl() {
    return env.getProperty("javadoop.jdbc.url");
}



> 如果是 Spring Boot 的 application.properties 注册的,那也是可以的。

## Properties 配置

前面我们说了怎么使用我们配置的 Properties,那么该怎么配置呢?Spring 提供了很多种配置方式。

### 1\. 通过 xml 配置

下面这个是最常用的配置方式了,很多项目都是这么写的:

<context:property-placeholder location="classpath:sys.properties" />


### 2\. 通过 @PropertySource 配置

前面的通过 xml 配置非常常用,但是如果你也有一种要消灭所有 xml 配置文件的冲动的话,你应该使用以下方式:

@PropertySource("classpath:sys.properties")
@Configuration
public class JavaDoopConfig {

}


注意一点,@PropertySource 在这里必须搭配 @Configuration 来使用,具体不展开说了。

### 3\. PropertyPlaceholderConfigurer

如果读者见过这个,也不必觉得奇怪,在 Spring 3.1 之前,经常就是这么使用的:

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

</bean>


当然,我们也可以用相应的 java configuration 的版本:

@Bean
public PropertyPlaceholderConfigurer propertiess() {
PropertyPlaceholderConfigurer ppc = new PropertyPlaceholderConfigurer();
Resource[] resources = new ClassPathResource[]{new ClassPathResource("sys.properties")};
ppc.setLocations(resources);
ppc.setIgnoreUnresolvablePlaceholders(true);
return ppc;
}


### 4\. PropertySourcesPlaceholderConfigurer

到了 Spring 3.1 的时候,引入了 PropertySourcesPlaceholderConfigurer,这是一个新的类,注意看和之前的 PropertyPlaceholderConfigurer 在名字上多了一个 Sources,所属的包也不一样,它在 Spring-Context 包中。

在配置上倒是没有什么区别:

<bean class="org.springframework.context.support.PropertySourcesPlaceholderConfigurer">
<property name="locations">
<list>
<value>classpath:sys.properties</value>
</list>
</property>
<property name="ignoreUnresolvablePlaceholders" value="true"/>

</bean>


也来一个 java configuration 版本吧:

@Bean
public PropertySourcesPlaceholderConfigurer properties() {
PropertySourcesPlaceholderConfigurer pspc = new PropertySourcesPlaceholderConfigurer();
Resource[] resources = new ClassPathResource[]{new ClassPathResource("sys.properties")};
pspc.setLocations(resources);
pspc.setIgnoreUnresolvablePlaceholders(true);
return pspc;
}


## Spring Boot 相关

Spring Boot 真的是好东西,开箱即用的感觉实在是太好了。这里简单介绍下相关的内容。

快速生成一个 Spring Boot 项目:[https://start.spring.io/](https://start.spring.io/)

### application.properties

我们每个项目都默认有一个 application.properties 文件,这个配置文件不需要像前面说的那样进行*注册*,Spring Boot 会帮我们自动注册。

当然,也许你想换个名字也是可以的,在启动的时候指定你的文件名字就可以了:

java -Dspring.config.location=classpath:sys.properties -jar app.jar


### application-{env}.properties

为了给不同的环境指定不同的配置,我们会用到这个。

比如测试环境和生产环境的数据库连接信息就不一样。

所以,在 application.properties 的基础上,我们还需要新建 application-dev.properties 和 application-prd.properties,用于配置环境相关的信息,然后启动的时候指定环境。

java -Dspring.profiles.active=prd -jar app.jar


结果就是,application.properties 和 application-prd.properties 两个文件中的配置都会注册进去,如果有重复的 key,application-prd.properties 文件中的优先级较高。

### @ConfigurationProperties

这个注解是 Spring Boot 中才有的。

即使大家不使用这个注解,大家也可能会在开源项目中看到这个,这里简单介绍下。

来一个例子直观一些。按照之前说的,在配置文件中填入下面的信息,你可以选择写入 application.properties 也可以用第一节介绍的方法。

javadoop.database.url=jdbc:mysql:
javadoop.database.username=admin
javadoop.database.password=admin123456


java 文件:

@Configuration
@ConfigurationProperties(prefix = "javadoop.database")
public class DataBase {
String url;
String username;
String password;
// getters and setters
}


这样,就在 Spring 的容器中就自动注册了一个类型为 DataBase 的 bean 了,而且属性都已经 set 好了。

### 在启动过程中动态修改属性值

这个我觉得都不需要太多介绍,用 Spring Boot 的应该基本上都知道。

属性配置有个覆盖顺序,也就是当出现相同的 key 的时候,以哪里的值为准。

启动参数 > application-{env}.properties > application.properties

启动参数动态设置属性:
java -Djavadoop.database.password=admin4321 -jar app.jar
上一篇下一篇

猜你喜欢

热点阅读