好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

Admin - SpringBoot + Maven 多启动环境配置实例详解

一:父级pom.xml文件 resources目录下新建指定文件夹,存放Spring配置文件

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

<profiles>

   <profile>

     <id>dev</id>

     <properties>

       <profiles.active>dev</profiles.active>

     </properties>

     <activation>

       <activeByDefault> true </activeByDefault>

     </activation>

   </profile>

   <profile>

     <id>telework</id>

     <properties>

       <profiles.active>telework</profiles.active>

     </properties>

   </profile>

   <profile>

     <id>sit</id>

     <properties>

       <profiles.active>sit</profiles.active>

     </properties>

   </profile>

   <profile>

     <id>pre</id>

     <properties>

       <profiles.active>pre</profiles.active>

     </properties>

   </profile>

   <profile>

     <id>prod</id>

     <properties>

       <profiles.active>prod</profiles.active>

     </properties>

   </profile>

</profiles>

二:application.properties

?

1

2

3

4

######################### server ###################

server.servlet.context-path=/i-admin-api

server.port= 10086

spring.profiles.active= @profiles .active@

到此这篇关于Admin - SpringBoot + Maven 多启动环境配置实例详解的文章就介绍到这了,更多相关SpringBoot + Maven 环境配置内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!

原文链接:https://blog.csdn.net/qq_42292831/article/details/115269610

查看更多关于Admin - SpringBoot + Maven 多启动环境配置实例详解的详细内容...

  阅读:20次