found character '@' that cannot start any token. (Do not use @ for indentation)in 'reader', line 19, column 13:active: @profileActive@ 解决⽅案如下:<!--build节点增加内容--> <resources> <resource> <directory>src/main/resources</directory> <!--开启过滤,⽤指定的参数替换directory下的...
在一个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...
而产生这个问题的原因就是打包后的@activatedProperties@没有变为dev(可通过target/classes/application.yml 查看@activatedProperties@是否变为了dev,idea或maven 打包后会生成一个target 文件),还是和第一张图片一样,而spring boot 无法识别@ 标志导致报错,我的多环境配置是这样的: <profiles> <profile> <id>dev</...
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 19, column 13: active: @profileActive@ 1. 2. 3. 4. 解决方案如下:pom中增加 <build> <finalName>$...
本文介绍如何解决character ‘@‘ that cannot start any token. (Do not use @ for indentation这个问题。 问题描述 有时候,IDEA突然运行不了项目了,之前是可以的,报错信息为: 21:34:05.973 [main] ERROR org.springframework.boot.SpringApplication - Application run failed ...
1、可能是因为@占位符需要加上双引号或着单引号;'@profile.spring@'2、可能是因为idea暂时没有识别出来maven项目,需要操作如下:右键项目中的pom.x...
found character '@' that cannot start any token. (Do not use @ for indentation) in 'reader', line 5, column 13: active: @env@ ^ 原因分析 maven没有同步。 方法 做完下边四步,一定能解决。 重启IDEA maven clean maven compile maven package...
一键复制会移除系统注释 * 14:48:04.616 [main] DEBUG org.springframework.boot.context.logging.ClasspathLoggingApplicationListener - Application failed to start with classpath: [file:/D:/ProgramFiles/Java/jdk1.8.0_231/jre/lib/charsets.jar, file:/D:/ProgramFiles/Java/jdk1.8.0_231/jre/lib/...
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> 或:...
springboot yml配置文件使用@project.xxxx@ 启动报错Do not use @ for indentation,程序员大本营,技术文章内容聚合第一站。