SpringBoot的配置文件(properties与yml)
SpringBoot配置文件可以是application.properties
或application.yml
。
application.properties
示例:
server.port=8080
spring.datasource.url=jdbc:mysql://localhost:3306/mydb
spring.datasource.username=myuser
spring.datasource.password=mypass
application.yml
示例:
server:
port: 8080
spring:
datasource:
url: jdbc:mysql://localhost:3306/mydb
username: myuser
password: mypass
两种格式都可以用来配置SpringBoot应用,yml
格式比properties
更为结构化且可读性更好,因此在现代应用中更为常见。
评论已关闭