黑馬_13 Spring Boot:04.spring boot 配置文件

13 Spring Boot:html

01.spring boot 介紹&&02.spring boot 入門mysql

04.spring boot 配置文件web

05.spring boot 整合其餘技術spring

 SpringBoot基礎 


4、SpringBoot的配置文件

SpringBoot配置文件類型和做用 sql

SpringBoot是基於約定的,因此不少配置都有默認值,但若是想使用本身的配置替換默認配置的話,就可使用
application.properties 或者 application.yml application.yaml)進行配置。
編程

  application.properties數組

 

#tomcat服務器的端口號
server.port=8888
#當前web應用的名稱
server.servlet.context-path=

 

其中,application.properties文件是鍵值對類型的文件,以前一直在使用,因此此處不在對properties文件的格式進行闡述。
除了properties文件外,SpringBoot還可使用yml文件進行配置,下面對yml文件進行講解。

tomcat

 4.1.2 application.yml配置文件


  
yml配置文件簡介springboot

YML文件格式是YAML (YAML Aint Markup Language)編寫的文件格式,YAML是一種直觀的可以被電腦識別的的數據數據序列化格式,
而且容易被人類閱讀,容易和腳本語言交互的,能夠被支持YAML庫的不一樣的編程語言程序導入,
好比: C/C++, Ruby, Python, Java, Perl, C#, PHP等。YML文件是以數據爲核心的,比傳統的xml方式更加簡

YML文件的擴展名可使用.yml或者.yaml
服務器

 

 

 配置普通數據
 語法: key: value

 

name: haohao 

注意:value以前有一個空格

配置對象數據

person:
    name: haohao
    age: 31
    addr: beijing
#或者
person: {name: haohao,age: 31,addr: beijing} 

注意:key1前面的空格個數不限定,在yml語法中,相同縮進表明同一個級別


 

 配置數組(ListSet)數據

語法:
key:
- value1
- value2
或者:
key: [value1,value2]

 

 

city:
- beijing
- tianjin
- shanghai
- chongqing
#或者
city: [beijing,tianjin,shanghai,chongqing]
#集合中的元素是對象形式 student: - name: zhangsan age: 18 score: 100 - name: lisi age: 28 score: 88 - name: wangwu age: 38 score: 90

注意:value1與之間的 - 之間存在一個空格

4.1.3 SpringBoot配置信息的查詢

上面說起過,SpringBoot的配置文件,主要的目的就是對配置信息進行修改的,但在配置時的key從哪裏去查詢
呢?咱們能夠查閱SpringBoot的官方文檔

 文檔URLhttps://docs.spring.io/spring-boot/docs/2.0.1.RELEASE/reference/htmlsingle/#common-applicationproperties

# ----------------------------------------
# WEB PROPERTIES
# ----------------------------------------
# EMBEDDED SERVER CONFIGURATION (ServerProperties)
server.port=8080 # Server HTTP port.
server.servlet.context-path= # Context path of the application.
server.servlet.path=/ # Path of the main dispatcher servlet.
# HTTP encoding (HttpEncodingProperties)
spring.http.encoding.charset=UTF-8 # Charset of HTTP requests and responses. Added to
the "Content-Type" header if not set explicitly.
# JACKSON (JacksonProperties)
spring.jackson.date-format= # Date format string or a fully-qualified date format
class name. For instance, `yyyy-MM-dd HH:mm:ss`.
# SPRING MVC (WebMvcProperties)
spring.mvc.servlet.load-on-startup=-1 # Load on startup priority of the dispatcher servlet.
spring.mvc.static-path-pattern=/** # Path pattern used for static resources.
spring.mvc.view.prefix= # Spring MVC view prefix.
spring.mvc.view.suffix= # Spring MVC view suffix.
# DATASOURCE (DataSourceAutoConfiguration & DataSourceProperties)
spring.datasource.driver-class-name= # Fully qualified name of the JDBC driver. Autodetected based on the URL by default.
spring.datasource.password= # Login password of the database.
spring.datasource.url= # JDBC URL of the database.
spring.datasource.username= # Login username of the database.
# JEST (Elasticsearch HTTP client) (JestProperties)
spring.elasticsearch.jest.password= # Login password.
spring.elasticsearch.jest.proxy.host= # Proxy host the HTTP client should use.
spring.elasticsearch.jest.proxy.port= # Proxy port the HTTP client should use.
spring.elasticsearch.jest.read-timeout=3s # Read timeout.
spring.elasticsearch.jest.username= # Login username.

 

  4.2 配置文件與配置類的屬性映射方式 

  4.2.1 使用註解@Value映射
  咱們能夠經過@Value註解將配置文件中的值映射到一個Spring管理的Bean的字段上

 

 Controller層實體Bean代碼以下:
 

@Controller
public class QuickStartController {
@Value("${person.name}")
private String name;
@Value("${person.age}")
private Integer age;

    @RequestMapping("/quick")
    @ResponseBody
    public String quick(){
    return "springboot 訪問成功! name="+name+",age="+age;
    }
}

 

 4.2.2 使用註解@ConfigurationProperties映射

 經過註解@ConfigurationProperties(prefix="配置文件中的key的前綴")能夠將配置文件中的配置自動與實體進行映射。

  

        <!-- @ConfigurationProperties的執行器的配置-->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-configuration-processor</artifactId>
            <optional>true</optional>
        </dependency>

 

 實體Bean代碼以下:
 

    @Controller
    @ConfigurationProperties(prefix = "person")
    public class QuickStartController {
        private String name;
        private Integer age;
    @RequestMapping("/quick")
    @ResponseBody
    public String quick(){
    return "springboot 訪問成功! name="+name+",age="+age;
    }

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

 

 注意:使用@ConfigurationProperties方式能夠進行配置文件與實體字段的自動映射,但須要字段必須提供set方法才能夠。



本文不使用application.properties文件 而使用更加簡潔的application.yml文件。將resource文件夾下原有的application.properties文件刪除,建立application.yml配置文件(備註:其實SpringBoot底層會把application.yml文件解析爲application.properties),因而建立了兩個yml文件(application.yml和application-dev.yml)。由於如今一個項目有好多環境:開發環境,測試環境,準生產環境,生產環境,每一個環境的參數能夠有不一樣,因此咱們就能夠把不一樣環境下的參數配置到各自對應的yml文件中,這樣在想用哪一個環境的配置項時候只須要在主配置文件中將用到的配置文件寫上就行。

筆記:在Spring Boot中多環境配置文件名須要知足application-{profile}.yml的格式,其中{profile}對應你的環境標識,好比:

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

至於哪一個具體的配置文件會被加載,須要在application.yml文件中經過spring.profiles.active屬性來設置,其值對應{profile}值。

application.yml

spring:
  profiles:
    active: dev

application-dev.yml

 

server:
  port: 8080
 
spring:
  datasource:
    username: root
    password: root
    url: jdbc:mysql://localhost:3306/springboot?useUnicode=true&characterEncoding=utf-8&useSSL=true&serverTimezone=Asia/Shanghai
    driver-class-name: com.mysql.cj.jdbc.Driver
 
mybatis:
  mapper-locations: classpath*:cn/bjut/mapper/*Mapper.xml
  type-aliases-package: cn.bjut.entity,cn.bjut.domain,cn.bjut.pojo
 
#showSql
logging:
  level:
    cn:
      bjut:
        mapper : debug

 

====================

參考資料:

把每一個不一樣運行環境的參數配置到.yml文件中

end

相關文章
相關標籤/搜索