SpringBoot配置文件application.yaml中使用@替换变量时--异常如何处理呢?

欣喜 SpringBoot 发布时间:2024-03-15 14:17:50 阅读数:10318 1
下文笔者讲述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 
   运行项目
版权声明

本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。

本文链接: https://www.Java265.com/JavaFramework/SpringBoot/202403/8117.html

最近发表

热门文章

好文推荐

Java265.com

https://www.java265.com

站长统计|粤ICP备14097017号-3

Powered By Java265.com信息维护小组

使用手机扫描二维码

关注我们看更多资讯

java爱好者