SpringBoot配置文件application.yaml中使用@替换变量时--异常如何处理呢?
下文笔者讲述application.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 8, column 14: active: @spring.profiles.active@我们只需采用以下步骤操作,即可解决此类异常
1.pom.xml设置相应的信息 <build> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> </resource> </resources> </build> 2.使用mvn clean和mvn install 启动项目或
使用mvn spring-boot:run 运行项目
版权声明
本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。