SpringBoot配置文件:.yml和.properties

SpringBoot配置文件:.yml和.properties

springboot的配置文件分为两种(选一种方式配置即可)

application.properties
application.yml

默认情况下是.properties,放在src/main/resources

如何转换

举个栗子:配置端口号
application.perporties中的配置为server.port=8091,那么application.yml就写成
在这里插入图片描述
此时要注意空格缩进,当编写层级对的时候一般是有相应的提示的,比如
SpringBoot配置文件:.yml和.properties_第1张图片

你可能感兴趣的:(SpringBoot,spring,boot,java,spring)