简单来说:properties文件都需要写全,yml前面相同的可以不写,一层对应一层就好了,
yml的好处就是天然的树状结构,一目了然,而properties全写,个人觉得yml看起来更方便。
代码对比:
application.properties中
server.port=8080
server.context-path=/test
spring.datasource.url=jdbc:mysql://192.168.0.110/3306
application.yml中
server:
port: 8080
context-path: /test
spring:
datasource:
url:jdbc:mysql://192.168.0.110/3306
使用yml’的时候 ":"后面要空一格格再写value
如果你的项目中存在 application.properties 文件,那么yml文件就是不发挥作用的。最好是只存在一种,避免混乱。