pom.xml activatedProperties --spring.profiles.active=uat 对应

Posted 滴滴滴--你不是爱拖延,而是爱逃避

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pom.xml activatedProperties --spring.profiles.active=uat 对应相关的知识,希望对你有一定的参考价值。

 

<profiles>
<profile>
<id>dev</id>
<properties>
<!-- 环境标识,需要与配置文件的名称相对应 -->
<activatedProperties>dev</activatedProperties>
</properties>
<activation>
<!-- 默认环境 -->
<activeByDefault>true</activeByDefault>
</activation>
</profile>
<profile>
<id>uat</id>
<properties>
<activatedProperties>uat</activatedProperties>
</properties>
</profile>
<profile>
<id>prod</id>
<properties>
<activatedProperties>prod</activatedProperties>
</properties>
</profile>
</profiles>

 

--spring.profiles.active=uat 

以上是关于pom.xml activatedProperties --spring.profiles.active=uat 对应的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot的pom.xml文件的父级.pom文件

pom.xml是干嘛的?

pom.xml

pom.xml文件

jenkins读取pom.xml

POM(project Object Model) Maven包管理依赖 pom.xml文件