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}") 引入配置類引數(需要注意路徑)