在Spring Boot中,`application.properties` 和 `application.yml` 文件用于配置应用程序的各个方面,如服务器端口、数据库连接、日志级别等。这两个文件是Spring Boot的配置文件,位于 `src/main/resources` 目录下。


application.properties 示例
`application.properties` 文件使用键值对的格式进行配置:

# 设置服务器端口server.port=8080# 数据库配置spring.datasource.url=jdbc:mysql://localhost:3306/mydbspring.datasource.username=myuserspring.datasource.password=mypasswordspring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver# 日志配置logging.level.root=INFOlogging.level.org.springframework.web=DEBUGlogging.level.org.hibernate=ERROR# Thymeleaf 配置spring.thymeleaf.prefix=classpath:/templates/spring.thymeleaf.suffix=.htmlspring.thymeleaf.mode=HTMLspring.thymeleaf.encoding=UTF-8spring.thymeleaf.cache=false

application.yml 示例
`application.yml` 文件使用 YAML(Yet Another Markup Language)格式,它是一种直观的能够被电脑读取的数据序列化格式,并且易于人类阅读。它是JSON的一个超集。

# 设置服务器端口server: port: 8080# 数据库配置spring: datasource:url: jdbc:mysql://localhost:3306/mydbusername: myuserpassword: mypassworddriver-class-name: com.mysql.cj.jdbc.Driver# 日志配置logging: level:root: INFOorg.springframework.web: DEBUGorg.hibernate: ERROR# Thymeleaf 配置thymeleaf: prefix: classpath:/templates/ suffix: .html mode: HTML encoding: UTF-8 cache: false

在 `application.yml` 文件中,可以使用缩进来表示层级关系,使得配置更加清晰。
注意事项
– `application.properties` 和 `application.yml` 可以同时存在,但是 `application.properties` 中的配置会覆盖 `application.yml` 中的同名配置。
– `application.yml` 支持数组或列表的配置,例如:`myprops: [~, ~]`。
– 在 `application.yml` 中,冒号 `:` 后面必须有一个空格。
– `application.yml` 支持多文档块,可以在同一个文件中分隔多个配置文档。
选择 `application.properties` 还是 `application.yml` 主要取决于个人喜好和项目需求。YAML格式在处理复杂配置时可能更加直观和易于管理。