欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

org.yaml.snakeyaml.scanner.ScannerException: while scanning for the next token

程序员文章站 2022-04-15 17:35:19
...

问题描述:

spring:
  profiles:
    active: @[email protected]

在yml读取pom.xml中定义的 profile变量

   <profiles>
        <!-- 开发环境 -->
        <profile>
            <id>dev</id>
            <properties>
                <activatedProperties>dev</activatedProperties>
            </properties>
        </profile>
    </profiles>

错误描述:

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)

解决方法:
在右侧的maven栏中重新reload的一下就行了

相关标签: 错误集