spring-boot的yml配置文件-爬坑

    别的不说,就一个最大的坑,不能另起一行新的配置。如

spring: 

  xx: 123

  yy: 345

spring: 

  zz: 789

这个是错误的!!!这个是错误的!!!这个是错误的!!!

正确写法

spring: 

  xx: 123

  yy: 345

  zz: 789

懂了没!!!不能换行重写新的包名!!!

你可能感兴趣的:(spring-boot的yml配置文件-爬坑)