• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

juven/portable-config-maven-plugin

原作者: [db:作者] 来自: 网络 收藏 邀请

开源软件名称(OpenSource Name):

juven/portable-config-maven-plugin

开源软件地址(OpenSource Url):

https://github.com/juven/portable-config-maven-plugin

开源编程语言(OpenSource Language):

Java 95.8%

开源软件介绍(OpenSource Introduction):

Build Status

Why Portable Config Maven Plugin?

When you want to deploy your application into different environments, say typical dev/test/staging/production, often you will want to change some configuration at build time. In Maven, this is a feature called Resource Filtering, which works quite well except you have to use Maven Property for every configuration you want to change. So you will have:

database.jdbc.connectionURL=${db.connectionURL}
database.jdbc.username=${db.username}
database.jdbc.password=${db.password}

So there's no default configuration in this case. With portable-config-maven-plugin, all configurations have default value, and you configure build to change the configurations only when you need to.

How to Use?

  1. You have a configuration file src/main/resources/db.properties with default values:
database.jdbc.username=dev    
database.jdbc.password=dev_pwd
  1. You want to change it in testing environment, so prepare a file for this change src/main/portable/test.xml:
  <?xml version="1.0" encoding="utf-8" ?>
  <portable-config>
    <config-file path="WEB-INF/classes/db.properties">
      <replace key="database.jdbc.username">test</replace>
      <replace key="database.jdbc.password">test_pwd</replace>
    </config-file>
  </portable-config>

Here the config_file is the file you want to change for testing environment, and path is its relative path in final war. Then you can use replace to change the configurations.

  1. Configure Maven to use portable-config-maven-plugin and apply your portable config:
   <plugin>
     <groupId>com.juvenxu.portable-config-maven-plugin</groupId>
     <artifactId>portable-config-maven-plugin</artifactId>
     <version>1.1.5</version>
       <executions>
         <execution>
           <goals>
             <goal>replace-package</goal>
           </goals>
         </execution>
       </executions>
       <configuration>
         <portableConfig>src/main/portable/test.xml</portableConfig>
       </configuration>
   </plugin>

You can also use maven property portableConfig to specify your portable config file: $ mvn clean package -DportableConfig="src/main/portable/test.xml"

  1. After running Maven, the file WEB-INF/classes/db.properties in the final war is now having:
database.jdbc.username=test
database.jdbc.password=test_pwd

Supported Configuration File Format

.properties

Properties files are most used configuration file format:

database.jdbc.username=dev
database.jdbc.password=dev_pwd

with

<replace key="database.jdbc.username">test</replace>
<replace key="database.jdbc.password">test_pwd</replace>

become

database.jdbc.username=test
database.jdbc.password=test_pwd

.sh

Unquoted, single quoted, double quoted and exported shell variables can be replaced:

BIN_HOME=/tmp/bin
OUT_HOME="/tmp/out"
LOG_HOME='/tmp/log'
export APP_HOME="/tmp/app"

with

<replace key="BIN_HOME">/home/juven/bin</replace>
<replace key="OUT_HOME">/home/juven/out</replace>
<replace key="LOG_HOME">/home/juven/log</replace>
<replace key="APP_HOME">/home/juven/app</replace>

become

BIN_HOME=/home/juven/bin
OUT_HOME="/home/juven/out"
LOG_HOME='/home/juven/log'
export APP_HOME="/home/juven/app"

.xml

Xml elements/attributes can be replaced via xPath:

<?xml version="1.0" encoding="UTF-8"?>
<server>
  <port>8080</port>
  <hosts>
    <host id="1">localhost</host>
    <host id="2">localhost</host>
  </hosts>
  <mode value="debug">
</server>"

with

<replace xpath="/server/port">80</replace>
<replace xpath="//host/[@id='1']">192.168.1.1</replace>
<replace xpath="//host/[@id='2']">192.168.1.2</replace>
<replace xpath="/server/mode/@value">run</replace>

become

<?xml version="1.0" encoding="UTF-8"?>
<server>
  <port>80</port>
  <hosts>
    <host id="1">192.168.1.1</host>
    <host id="2">192.168.1.2</host>
  </hosts>
  <mode value="run">
</server>"

FAQ

Q: I have properties file but it's extension is not .properties, how to make this plugin to recognize it?

A. You can specify file type in your portable config xml like this:

<?xml version="1.0" encoding="utf-8" ?>
<portable-config>
  <config-file path="db.ini" type=".properties">
    <replace key="mysql.host">192.168.1.100</replace>
  </config-file>
</portable-config>

Tutorial From Users

Acknowledgments

  • Thanks to Jacky Chan for initially inspiring me to write this tool with thoughtful ideas.



鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
mark-vieira/gradle-maven-settings-plugin: Gradle Maven settings plugin发布时间:2022-08-17
下一篇:
jdillon/mvnsh: Maven Shell发布时间:2022-08-17
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap