【SpringBoot】SpringBoot项目使用@@pom文件配置

InterviewCoder

# 【SpringBoot】SpringBoot 项目使用 @@pom 文件配置

在引用 pom 文件配置时需要进行配置才可以使用 @@

1
2
3
4
5
6
7
8
9
<build>
<!-- 使用 @@ application.yml 获取pom文件中的配置 -->
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</build>
1
2
3
spring:
profiles:
active: @profile.active@

# 关于我

Brath 是一个热爱技术的 Java 程序猿,公众号「InterviewCoder」定期分享有趣有料的精品原创文章!

InterviewCoder

非常感谢各位人才能看到这里,原创不易,文章如果有帮助可以关注、点赞、分享或评论,这都是对我的莫大支持!

评论