Spring Boot配置篇(基于Spring Boot 2.0系列)

1:概述

SpringBoot支持外部化配置,配置文件格式如下所示:

  • properties files
  • yaml files
  • environment variables
  • command-line arguments

使用外部化配置方式:

  • @Value注解
  • Environment抽象(Spring环境接口抽象)
  • @ConfigurationProperties
  • PropertySource(文件属性抽象)

2:自定义属性

POM内容如下

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter</artifactId>
        </dependency>
		
        <!--生成spring-configuration-metadata.json文件,提示属性-->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-configuration-processor</artifactId>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
        </dependency>
    </dependencies>

当使用Spring Boot开发项目时,Spring Boot会默认读取classpath下application.properties

application.yml文件,详情请查看源码ConfigFileApplicationListener。这种自定义少量

属性常常通过@Value注解进行加载,但是@Value所在类必须在Spring IOC容器中。

application.yml自定义属性

hello:
  user:
    name: "刘恩源"

读取该属性常常通过@Value注解进行读取。

@Component
@Data
public class HelloUser {
	//hello.user.name:default==>>表示当时该属性在
    //spring Environment没有找到取默认值default
    @Value("${hello.user.name:default}")
    private String userName;
}


/**
 * 类描述: spring boot config
 *
 * @author liuenyuan
 * @date 2019/6/16 11:36
 * @describe
 * @see org.springframework.beans.factory.annotation.Value
 * @see org.springframework.context.annotation.PropertySource
 * @see org.springframework.boot.context.properties.ConfigurationProperties
 * @see org.springframework.boot.context.properties.EnableConfigurationProperties
 * @see org.springframework.core.env.Environment
 * @see org.springframework.context.annotation.Profile
 * @see org.springframework.context.support.PropertySourcesPlaceholderConfigurer
 */
@SpringBootApplication
public class ConfigApplication {

    public static void main(String[] args) {
        ConfigurableApplicationContext context = SpringApplication.run(ConfigApplication.class, args);
        HelloUser helloUser = context.getBean(HelloUser.class);
        System.out.println(String.format("通过@Value注解读取自定义的少量属性: %s", helloUser.getUserName()));
        context.close();
    }
}

@Value注解注入使用情况

转载自:https://www.cnblogs.com/wangbin2188/p/9014837.html

  • 注入普通字符串

  • 注入操作系统属性

  • 注入表达式结果

  • 注入其他Bean属性

  • 注入文件资源

  • 注入URL资源

  • 注入${…}来处理placeholder。

      @Value("normal")
      private String normal; // 注入普通字符串
    
      @Value("#{systemProperties['os.name']}")
      private String systemPropertiesName; // 注入操作系统属性
    
      @Value("#{ T(java.lang.Math).random() * 100.0 }")
      private double randomNumber; //注入表达式结果
    
      @Value("#{beanInject.another}")
      private String fromAnotherBean; // 注入其他Bean属性:注入beanInject对象的属性another,类具体定义见下面
    
      @Value("classpath:com/hry/spring/configinject/config.txt")
      private Resource resourceFile; // 注入文件资源
    
      @Value("http://www.baidu.com")
      private Resource testUrl; // 注入URL资源
    

3:将配置文件属性赋给实体类

当有许多配置属性(建议超过5这样),可以将这些属性作为字段来创建一个JavaBean,并将属性赋给他们。例如

在application.yml配置属性如下:

person:
  name: "刘恩源"
  age: 21
  school: "天津师范大学"

配置属性类PersonProperties

@ConfigurationProperties注解是将properties配置文件转换为bean使用,默认是将application.yml

或者application.properties属性转换成bean使用。@PropertySource只支持properties结尾的文件。

@EnableConfigurationProperties注解的作用是@ConfigurationProperties注解生效,并将属性

配置类注册到Spring IOC容器中。 如果需要加载指定配置文件,可以使用@PropertySource注解。

@ConfigurationProperties(prefix = "person")
@Data
public class PersonProperties {

    private String name;

    private Integer age;

    private String school;
}

@EnableConfigurationProperties({PersonProperties.class})
@Configuration
public class PersonConfiguration {

    private final PersonProperties personProperties;


    public PersonConfiguration(PersonProperties personProperties) {
        this.personProperties = personProperties;
        System.out.println(String.format("PersonProperties: %s", this.personProperties));
    }

    public PersonProperties getPersonProperties() {
        return personProperties;
    }
}

4:自定义配置文件

上面介绍了读取默认配置文件application.yml|application.properties中的配置属性。当然,我们也可以读取

自定义的配置文件中属性。目前官方使用@PropertySource注解导入自定义的配置文件属性。

建立hello.properties

#load config properties
person.name=刘恩源
person.age=20
person.school=天津师范大学

建立PersonProperties.java

//建立声明加载properties配置文件的encoding和name
@ConfigurationProperties(prefix = "person")
@Data
@PropertySource(value = {"classpath:/hello.properties"}, encoding = "UTF-8", name = "hello")
public class PersonProperties {

    private String name;

    private Integer age;

    private String school;
}

建立PersonConfiguration,使用@EnableConfigurationProperties激活@ConfigurationProperties

注解,将其标注的JavaBean注入到Spring IOC容器中。

@EnableConfigurationProperties({PersonProperties.class})
@Configuration
public class PersonConfiguration {

    private final PersonProperties personProperties;


    public PersonConfiguration(PersonProperties personProperties) {
        this.personProperties = personProperties;
        System.out.println(String.format("PersonProperties: %s", this.personProperties));
    }

    public PersonProperties getPersonProperties() {
        return personProperties;
    }
}

加载指定yml|yaml文件

配置如下:

public class YamlPropertiesConfiguration {
    
    @Bean
    public static PropertySourcesPlaceholderConfigurer properties() {
        PropertySourcesPlaceholderConfigurer configurer = new PropertySourcesPlaceholderConfigurer();
        YamlPropertiesFactoryBean yml = new YamlPropertiesFactoryBean();
        yml.setResources(new ClassPathResource("/hello.yml"));
        configurer.setProperties(yml.getObject());
        return configurer;
    }
}

可以参照我实现的自定义注解@YmlPropertySource,加载yml|yaml文件,可以大致实现和@PropertySource

注解同样的功能。

@YmlPropertySource实现加载yml|yaml文件

5:多环境配置

在企业开发环境中,需要不同的配置环境.SpringBoot使用spring.profiles.active属性加载不同环境的配置文件,配置文件格式为application-{profile}.properties|yml|yaml。{profile}对应环境标识。

  • application-test.yml:测试环境
  • application-dev.yml:开发环境
  • application.prod:生产环境

可以在springboot默认配置文件application.yml通过配置spring.profiles.active激活环境。也可以在

特定的类使用@Profile注解激活环境。该注解可以使用逻辑运算符。

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章