zoukankan      html  css  js  c++  java
  • How to set spring boot active profiles with maven profiles

    In the previous post you could read about separate Spring Boot builds for a local development machine and public environments. It’s highly possible that in addition to such setup you would like to load different Spring properties files based on the active Maven profile. In this note you will learn how to accomplish the desired result in a few easy steps.

    Step-by-step guide

    1. The first thing you need is two properties files for keeping your configurations. The names of the files should match with the pattern application-{custom_suffix}.properties. Create them in the src/main/resources directory of your Maven project, next to the main application.properties file, which you’re going to use later to activate one of the others and to hold values shared by both profiles.

    2. Then it’s time to modify your pom.xml. You need to define a custom property in each of your Maven profiles and set their values to match with suffixes of corresponding properties files that you want to load with a particular profile. The following sample also marks the first profile to run by default, but it’s not mandatory.
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      <profile>
          <id>dev</id>
          <properties>
              <activatedProperties>dev</activatedProperties>
          </properties>
          <activation>
              <activeByDefault>true</activeByDefault>
          </activation>
      </profile>
      <profile>
          <id>release</id>
          <properties>
              <activatedProperties>release</activatedProperties>
          </properties>
      </profile>
    3. (这一步不需要)Next, in the build section of the same file, configure filtering for the Resources Plugin. That will allow you to insert properties defined in the previous step into any file in the resources directory, which is the subsequent step.
      1
      2
      3
      4
      5
      6
      7
      8
      9
      <build>
          <resources>
              <resource>
                  <directory>src/main/resources</directory>
                  <filtering>true</filtering>
              </resource>
          </resources>
          
      </build>
    4. Finally, add the following line to the application.properties.
      1
      spring.profiles.active=@activatedProperties@

      When the build is run, the Resources Plugin will replace the placeholder with the value of the property defined in the active Maven profile. After starting  your application, the Spring framework will load the appropriate configuration file based on the name of the active Spring profile, which is described by the value of the spring.profiles.active property. Note that Spring Boot 1.3 replaced the default Resources Plugin syntax for filtered values and uses @activatedProperties@ instead of ${activatedProperties} notation.

    Just build it

    The main goal has been achieved and now you are able to load separate properties for different build profiles. If you’re wondering how Spring resolves properties files, you can read more about the topic in the official documentation. In case of any issues, improvements, or questions, please don’t hesitate to leave a comment.

    http://dolszewski.com/spring/spring-boot-properties-per-maven-profile/

    The active profiles to use for a particular application can be specified using the profiles argument. The following configuration enables the foo and bar profiles:

    <project>
      ...
      <build>
        ...
        <plugins>
          ...
          <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
            <version>1.5.1.RELEASE</version>
            <configuration>
              <profiles>
                <profile>foo</profile>
                <profile>bar</profile>
              </profiles>
            </configuration>
            ...
          </plugin>
          ...
        </plugins>
        ...
      </build>
      ...
    </project>

    The profiles to enable can be specified on the command line as well, make sure to separate them with a comma, that is:

    mvn spring-boot:run -Drun.profiles=foo,bar

    mvn命令中使用 -Dspring.profiles.active参数来指定profile
    java -jar命令中,需要使用 --spring.profiles.active来指定profile

    http://docs.spring.io/spring-boot/docs/current/maven-plugin/examples/run-profiles.html

     
    其它方式的可参考:
    https://my.oschina.net/yybear/blog/113755
    http://stackoverflow.com/questions/25420745/how-to-set-spring-active-profiles-with-maven-profiles

    https://dzone.com/articles/spring-profiles-or-maven

    http://www.jianshu.com/p/948c303b2253

  • 相关阅读:
    php 将富文本编辑后的内容取出
    阿里云Windows远程连接出现身份验证错误,要求的函数不正确”的报错。
    composer切换中国镜像
    php获取当月天数及当月第一天及最后一天、上月第一天及最后一天实现方法
    golang ioutil 包源码阅读
    ssh 远程登录 REMOTE HOST IDENTIFICATION HAS CHANGED 问题
    Golang -- fallthrough
    Golang 执行 go run main.go 显示 undefined
    Golang Playground 进度条示例
    关系型数据库和非关系型数据库(NOSQL)
  • 原文地址:https://www.cnblogs.com/softidea/p/6375806.html
Copyright © 2011-2022 走看看