yml文件报异常

Caused by: org.yaml.snakeyaml.scanner.ScannerException: while scanning for the next token
found character '@' that cannot start any token. (Do not use @ for indentation)
 in 'reader', line 14, column 13:
        active: @profileActive@

 

yml文件

spring:
  # 选择激活的配置文件
  profiles:
    active: @profileActive@

以上配置在idea工具中按住ctrl可以正常调整到对应pom文件的属性

 

pom.xml


        
            dev
            
                dev
            
            
                true
            
        
        
            pro
            
                pro
            

        
    

 

加上 ' ' 即可解决,修改如下:

spring:
  # 选择激活的配置文件
  profiles:
    active: '@profileActive@'

 

 

你可能感兴趣的:(exception)