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

2021-03-29 10:50:19 IT技术网 互联网
浏览

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

<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

######################### server ###################
server.servlet.context-path=/i-admin-api
server.port=10086
spring.profiles.active=@profiles.active@

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

您可能感兴趣的文章:

  • 详解SpringBoot获得Maven-pom中版本号和编译时间戳
  • maven+springboot打成jar包的方法
  • SpringBoot+Maven 多模块项目的构建、运行、打包实战
  • IDEA+maven+SpringBoot+JPA+Thymeleaf实现Crud及分页
  • Maven管理SpringBoot Profile详解
  • springboot+maven快速构建项目的示例代码