SpringBoot非官方教程 | 第二篇:SpringBoot配置文件詳解

springboot採納了創建生產就緒Spring應用程序的觀點。 Spring Boot優先於配置的慣例,旨在讓您儘快啓動和運行。在通常狀況下,咱們不須要作太多的配置就可以讓spring boot正常運行。在一些特殊的狀況下,咱們須要作修改一些配置,或者須要有本身的配置屬性。java

1、自定義屬性

當咱們建立一個springboot項目的時候,系統默認會爲咱們在src/main/java/resources目錄下建立一個application.properties。我的習慣,我會將application.properties改成application.yml文件,兩種文件格式都支持。git

在application.yml自定義一組屬性:github

my:
 name: forezp
 age: 12

若是你須要讀取配置文件的值只須要加@Value(「${屬性名}」):spring

@RestController
public class MiyaController {

    @Value("${my.name}")
    private String name;
    @Value("${my.age}")
    private int age;

    @RequestMapping(value = "/miya")
    public String miya(){
        return name+":"+age;
    }

}

啓動工程,訪問:localhost:8080/miya,瀏覽器顯示:瀏覽器

forezp:12

2、將配置文件的屬性賦給實體類

當咱們有不少配置屬性的時候,這時咱們會把這些屬性做爲字段來建立一個javabean,並將屬性值賦予給他們,好比:springboot

my:
 name: forezp
 age: 12
 number:  ${random.int}
 uuid : ${random.uuid}
 max: ${random.int(10)}
 value: ${random.value}
 greeting: hi,i'm  ${my.name}

其中配置文件中用到了${random} ,它能夠用來生成各類不一樣類型的隨機值。app

怎麼講這些屬性賦於給一個javabean 呢,首先建立一個javabean :dom

@ConfigurationProperties(prefix = "my")
@Component
public class ConfigBean {

    private String name;
    private int age;
    private int number;
    private String uuid;
    private int max;
    private String value;
    private String greeting;

    省略了getter setter....

須要加個註解@ConfigurationProperties,並加上它的prrfix。另外@Component可加可不加。另外spring-boot-configuration-processor依賴可加可不加,具體緣由不詳。ide

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-configuration-processor</artifactId>
    <optional>true</optional>
</dependency>

另外須要在應用類或者application類,加EnableConfigurationProperties註解。spring-boot

@RestController
@EnableConfigurationProperties({ConfigBean.class})
public class LucyController {
    @Autowired
    ConfigBean configBean;

    @RequestMapping(value = "/lucy")
    public String miya(){
        return configBean.getGreeting()+" >>>>"+configBean.getName()+" >>>>"+ configBean.getUuid()+" >>>>"+configBean.getMax();
    }

啓動工程,訪問localhost:8080/lucy,咱們會發現配置文件信息讀到了。

3、自定義配置文件

上面介紹的是咱們都把配置文件寫到application.yml中。有時咱們不肯意把配置都寫到application配置文件中,這時須要咱們自定義配置文件,好比test.properties:

com.forezp.name=forezp
com.forezp.age=12

怎麼將這個配置文件信息賦予給一個javabean呢?

@Configuration
@PropertySource(value = "classpath:test.properties")
@ConfigurationProperties(prefix = "com.forezp")
public class User {
    private String name;
    private int age;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public int getAge() {
        return age;
    }

    public void setAge(int age) {
        this.age = age;
    }
}

在最新版本的springboot,須要加這三個註解。@Configuration
@PropertySource(value = 「classpath:test.properties」)
@ConfigurationProperties(prefix = 「com.forezp」);在1.4版本須要
PropertySource加上location。

@RestController
@EnableConfigurationProperties({ConfigBean.class,User.class})
public class LucyController {
    @Autowired
    ConfigBean configBean;

    @RequestMapping(value = "/lucy")
    public String miya(){
        return configBean.getGreeting()+" >>>>"+configBean.getName()+" >>>>"+ configBean.getUuid()+" >>>>"+configBean.getMax();
    }

    @Autowired
    User user;
    @RequestMapping(value = "/user")
    public String user(){
        return user.getName()+user.getAge();
    }

}

啓動工程,打開localhost:8080/user;瀏覽器會顯示:

forezp12

4、多個環境配置文件

在現實的開發環境中,咱們須要不一樣的配置環境;格式爲application-{profile}.properties,其中{profile}對應你的環境標識,好比:

application-test.properties:測試環境
application-dev.properties:開發環境
application-prod.properties:生產環境

怎麼使用?只須要咱們在application.yml中加:

spring:
  profiles:
    active: dev

其中application-dev.yml:

server:
  port: 8082

啓動工程,發現程序的端口再也不是8080,而是8082。

源碼下載:https://github.com/forezp/Spr...

5、參考文獻

spring-boot-reference-guide-zh

pring Boot乾貨系列:(二)配置文件解析

Spring Boot屬性配置文件詳解

相關文章
相關標籤/搜索