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

版本仲裁中心

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配置和自動配置原理的詳細內容,更多關於Springboot自動配置的資料請關註WalkonNet其它相關文章!

推薦閱讀: