springboot 配置多环境使用yml配置 @profileActive@ 启动报错Do not use @ for indentation

yml配置文件中添加了下面配置

spring:
  profiles:
    active: @profileActive@

启动会报错:@profileActive@ 启动报错Do not use @ for indentation

springboot 配置多环境使用yml配置 @profileActive@ 启动报错Do not use @ for indentation_第1张图片

解决办法:

一、需要在pom文件中添加以下代码

springboot 配置多环境使用yml配置 @profileActive@ 启动报错Do not use @ for indentation_第2张图片


    org.apache.maven.plugins
    maven-resources-plugin
    
        @
        false
    

二、在pom文件添加


        
            org.yaml
            snakeyaml
            1.25
        

 

你可能感兴趣的:(spring)