在一个Maven的SpringBoot项目中出现'@' that cannot start any token. (Do not use @ for indentation)异常情况。 在配置文件application.yml中有如下代码: spring: application: name: @artifactId@ 运行报如下的错误: Causedby: org.yaml.snakeyaml.scanner.ScannerException: while scanningforthe next token foun...
这个问题的产生是因为在使用idea的maven 进行编译的时候,没有将其视为变量,而是作为字符串进行的编译,导致target 中的application.yml 文件中的active 的值为:@activatedProperties@,如下所示: 正常情况下,当maven 进行编译时,会将yml 文件中的多环境配置变量更换为指定的配置值,例如:我的默认配置值是dev 则上图中...
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...
1 cannot start any token. (Do not use @forindentation) 回到顶部(go to top) 2.解决方法 右键项目中的pom.xml文件,找到Maven中的Reload project就可以了
maven多环境IDEA启动报Donotuse@forindentation错误解决方法 maven多环境IDEA启动报Donotuse@forindentation错误解决⽅ 法 maven多环境配置如下:<profiles> <profile> <!--开发环境--> <id>dev</id> <properties> <profileActive>dev</profileActive> </properties> <activation> <activeByDefault>true</activeBy...
本文介绍如何解决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 - Appli...
解决@thatcannotstartanytoken.(Donotuse@forinden。。。在⼀个Maven的SpringBoot项⽬中出现 '@' that cannot start any token. (Do not use @ for indentation) 异常情况。在配置⽂件 application.yml 中有如下代码:spring:application:name: @artifactId@ 运⾏报如下的错误:Caused by: org.yaml....
1、可能是因为@占位符需要加上双引号或着单引号;'@profile.spring@'2、可能是因为idea暂时没有识别出来maven项目,需要操作如下:右键项目中的pom.x...
found character '@' that cannot start any token. (Do not use @ for indentation)报错信息 解决:在pom.xml文件中增加 <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> </resource> </resources> 或:...
(Do not use \t(TAB) for indentation) 出现这个报错的原因是 yml 配置文件中缩进不规范造成的,导致spring启动读取yml配置文件不能正确读取。 解决办法:删除缩进的空格内容,再用空格重新缩进 P.S. applicaion-druid.yaml 配置 jdbc 的时候,database 是 topology,刚好是碰到了 \topology 。 实际上问题不在这里,...