1、可配置项列表

在 springboot 文档的 Application Properties 附录中列举了所有可用的配置项

URL
1)https://docs.spring.io/spring-boot/docs/current/reference/html/
2)https://docs.spring.io/spring-boot/docs/current/reference/html/appendix-application-properties.html#common-application-properties

可配置项 & 配置提示 - 图1

2、配置提示

配置 starter 时,选上 Spring Configuration Processor ,在编写配置文件时,就会自动根据类的属性来做代码提示了。
image.png

或在 pom.xml 文件中手动加上此依赖

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

这样在编写配置文件时,无论是 .properties 还是 .yml 都会有代码提示。