我是靠谱客的博主 贤惠书本,最近开发中收集的这篇文章主要介绍SpringBoot中application.yaml无法使用@@读取pom.xml中标签值的一个解决方法,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
application.yaml文件读取不到pom.xml下的标签值,报
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 7, column 13:
active: @spring.profiles.active@
的解决方法 :
在模块的pom.xml文件下写入
<build>
<!--重要 如果不设置resource 会导致application.yaml中的@@找不到pom文件中的配置-->
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<!--重要 如果不设置resource 会导致application.yaml中的@@找不到pom文件中的配置-->
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
最后
以上就是贤惠书本为你收集整理的SpringBoot中application.yaml无法使用@@读取pom.xml中标签值的一个解决方法的全部内容,希望文章能够帮你解决SpringBoot中application.yaml无法使用@@读取pom.xml中标签值的一个解决方法所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复