SpringBoot自定义配置文件

SpringBoot的配置文件老是出现警告,后面发现了这种解决方式,引入Maven依赖:

1<dependency>
2    <groupId>org.springframework.boot</groupId>
3    <artifactId>spring-boot-configuration-processor</artifactId>
4    <optional>true</optional>
5</dependency>

下面是官方给出的自定义配置的方式:

mark

按照图示操作就行:

mark image.png

配置文件完美消除警告 mark mark