关于java:Idea解决character-‘‘-that-cannot

78次阅读

共计 580 个字符,预计需要花费 2 分钟才能阅读完成。

原文网址:​​Idea– 解决 character‘@‘that cannot start any token. (Do not use @ for indentation_IT 利刃出鞘的博客 -CSDN 博客​​

简介

本文介绍如何解决 character‘@‘that cannot start any token. (Do not use @ for indentation 这个问题。

分享 Java 技术星球(自学精灵),网址:​​learn.skyofit.com​​

问题形容

有时候,IDEA 忽然运行不了我的项目了,之前是能够的,报错信息为:

21:34:05.973 [main] ERROR org.springframework.boot.SpringApplication - Application run failed
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 5, column 13:
        active: @env@
                ^

起因剖析

maven 没有同步。

办法

做完下边四步,肯定能解决。

  1. 重启 IDEA
  2. maven clean
  3. maven compile
  4. maven package

正文完
 0