配置檔案的編寫

沉默的U盘發表於2024-07-13

1. 在application.yml裡面配置需要的引數
配置檔案的編寫

2. pom.xml檔案引入配置檔案依賴

        <!-- 配置生成配置檔案處理器-->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-configuration-processor</artifactId>
            <optional>true</optional>
        </dependency>

3. 使用配置檔案裡面的資訊

  方法一:適用於引數多 使用實體類和 @Autowired 引入配置類引數

      1)編寫config類:注意 @ConfigurationProperties(prefix = "aliyun.oss") 要與第一步yml檔案裡面的路徑匹配

      2)使用@Autowired註解,哪裡需要就注入引用

配置檔案的編寫配置檔案的編寫

  方法二:適用於引數少直接使用 @Value("${aliyun.oss.endpoint}") 引入配置類引數(需要注意路徑)

      配置檔案的編寫

   

相關文章