首頁  >  文章  >  Java  >  Springboot-yaml配置和自動配置的原理分析

Springboot-yaml配置和自動配置的原理分析

王林
王林轉載
2023-05-13 15:25:061064瀏覽

版本仲裁中心

spring dependencies中幫我們依賴了很多常用的jar包, 導入這些jar包不需要版本號
如:

<dependency>
    <groupId>org.apache.commons</groupId>
    <artifactId>commons-lang3</artifactId>
</dependency>

自動配置原理

設定檔設定debug: true可以在控制台列印自動設定報表.可以列印所有的啟動的自動設定和沒有啟動的自動設定類別.

@SpringBootApplication
標註在某個類別上, 說明這個類別是springboot的主啟動類別.

@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
@SpringBootConfiguration
@EnableAutoConfiguration
@ComponentScan(
    excludeFilters = {@Filter(
    type = FilterType.CUSTOM,
    classes = {TypeExcludeFilter.class}
), @Filter(
    type = FilterType.CUSTOM,
    classes = {AutoConfigurationExcludeFilter.class}
)}
)
public @interface SpringBootApplication {

@EnableAutoConfiguration: 開啟自動配置, 所以我們不用手動做很多配置

@AutoConfigurationPackage
@Import({AutoConfigurationImportSelector.class})
public @interface EnableAutoConfiguration {

#@ AutoConfigurationPackage
將主配置類別所在的套件下所有元件都會掃描到spring容器中.

@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
@Import({Registrar.class})
public @interface AutoConfigurationPackage {

AutoConfigurationImportSelector
透過@ import: 給容器中導入一個元件, 這個元件會載入所有的自動配置類別, 如mysql, web等等
最終會到META-INF/spring.factories這個位置找所有的自動配置類別加載到容器中. 這些自動配置類別就把我們以前用spring做的一大堆配置給做掉了.

yaml語法

字面量

字串預設不需要加引號, 加單引號和雙引號有特殊用意

單引號特殊會轉義, 如\n輸出或\n
雙引號特殊字元不會轉義, 如\n輸出是一個空格
不加和加單引號一樣, 都會轉義

鬆散綁定

屬性的寫法駝峰和加中劃線-或者下劃線_一樣, 轉換到實體類別都是駝峰式. 但是這種只能用在configurationProperties中, 不能用在@Value註解中使用

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

這個註解, 可以讓yaml配置中自訂配置有提示

和@PropertySource註解一起使用

@PropertySource註解可以載入指定的其他檔案

@PropertySource(value = "classpath:user.properties")

和@ImportResource一起使用

導入spring的設定檔, 讓其生效

@ImportResource(locations={"classpath:mybatis.xml"})

設定檔佔位符

${random.int} 使用yaml提供給的隨機數字
${server.port} 使用前面配置好的值
${server.name:你好} 沒有值的話使用預設值

profile

啟動指定不同的設定環境

#命令列啟動可以新增–spring.profiles.active=dev
虛擬機器參數啟動-Dspring.profiles.active=dev

設定檔的載入順序

file: ./config/ 專案根路徑下的config目錄
file: ./ 項目根目錄
classpath: config/
classpath: /
所有檔案都會被載入到, 從上到下優先權從高到低, 高的會覆寫掉低的內容.不同的設定都會生效, 互補.
也可以在部署專案時候透過–spring.config.location來改變設定檔位置.專案中載入的設定檔和這裡指定的設定檔互補.

以上是Springboot-yaml配置和自動配置的原理分析的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:yisu.com。如有侵權,請聯絡admin@php.cn刪除