欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Spring Boot yml 文件中无法通过 @@ 使用 pom 文件中定义的变量

程序员文章站 2022-04-25 22:11:29
...

Spring Boot yml 文件中无法通过 @@ 使用 pom 文件中定义的变量

错误信息如下

java.lang.IllegalStateException: Failed to load property source from location 'classpath:/application.yml'
	... ...
Caused by: while scanning for the next token
found character '@' that cannot start any token. (Do not use @ for indentation)
 in 'reader', line 3, column 11:
        name: @[email protected]
              ^

解决方法:在 pom 文件中配置 <filtering>true</filtering>

<resource>
    <directory>src/main/resources</directory>
    <filtering>true</filtering>
</resource>
相关标签: Maven Spring Boot