spring boot properties文件与yaml文件的区别

编写是没有提示的话在pom中添加依赖,如下:

 

 
        
            org.springframework.boot
            spring-boot-configuration-processor
            true
        

 

 

 

properties文件与yaml文件使用其一就行,如果都有会相互互补;

 

spring boot properties文件与yaml文件的区别_第1张图片

yaml文件大小写比较敏感

 值得写法

  K,V 键值对的写法,

  不用加双引号,单引号

  双引号不会转义特殊字符,单引号可以

yml写法:

spring boot properties文件与yaml文件的区别_第2张图片

拼接 , 取值可以用${}(${random.int}随机数)

spring boot properties文件与yaml文件的区别_第3张图片

 properties写法:

 spring boot properties文件与yaml文件的区别_第4张图片

spring.profiles.active引用指定配置文件

spring boot properties文件与yaml文件的区别_第5张图片

 如果没有application.properties文件默认端口8080

转载于:https://www.cnblogs.com/ch94/p/10370101.html

你可能感兴趣的:(java)