當(dāng)利用Jenkins進(jìn)行自動(dòng)集成的時(shí)候支子,有時(shí)候會(huì)出現(xiàn)一個(gè)比較麻煩的問(wèn)題,就是配置文件的書(shū)寫(xiě)达舒,當(dāng)配置文件涉及到ip值朋、端口等的時(shí)候,服務(wù)器環(huán)境不一樣巩搏,值可能也會(huì)變吞歼,比如說(shuō)配置文件中一個(gè)接口的地址,在自己的開(kāi)發(fā)環(huán)境可能是一個(gè)外網(wǎng)地址塔猾,但是,到了部署的服務(wù)器上稽坤,很可能會(huì)變成一個(gè)內(nèi)網(wǎng)地址丈甸,這樣在提交代碼,構(gòu)建的時(shí)候尿褪,可能會(huì)出現(xiàn)忘了修改配置文件的情況睦擂,為了避免這種情況,可能每個(gè)人都有自己的解決方法杖玲,在這我介紹一下我使用的一種解決方法顿仇,利用maven的profile去管理配置文件。
在這里Jenkins就不做過(guò)多的概述摆马,它是一個(gè)自動(dòng)集成的工具臼闻。本文直接說(shuō)說(shuō)利用Jenkins與profile管理自動(dòng)集成中的配置文件。
1.profile配置
在maven中可以使用profiles可以配置出各個(gè)環(huán)境的profile囤采,通過(guò)激活這些profile來(lái)獲取各個(gè)環(huán)境的構(gòu)建信息述呐,在項(xiàng)目的pom.xml文件中配置profiles:
<!-- profiles屬性,一般寫(xiě)在pom.xml文件的上面的部分,方便查看 -->
<profiles>
<!-- 配置開(kāi)發(fā)環(huán)境dev profile-->
<profile>
<id>dev</id>
<properties>
<!-- dev profile對(duì)應(yīng)的環(huán)境版本為dev-->
<env>dev</env>
</properties>
<!-- 設(shè)置默認(rèn)激活蕉毯,也就是說(shuō)項(xiàng)目的默認(rèn)環(huán)境為開(kāi)發(fā)環(huán)境 dev profile-->
<activation>
<activeByDefault>true</activeByDefault>
</activation>
</profile>
<!-- 測(cè)試環(huán)境 test profile -->
<profile>
<id>test</id>
<properties>
<!-- test profile對(duì)應(yīng)的環(huán)境版本為test-->
<env>test</env>
</properties>
</profile>
<!--生產(chǎn)環(huán)境 release profile-->
<profile>
<id>release</id>
<properties>
<!-- release profile對(duì)應(yīng)的環(huán)境版本為release-->
<env>release</env>
</properties>
</profile>
</profiles>
同時(shí)在項(xiàng)目中創(chuàng)建配置文件文件夾deployEnv乓搬,目錄結(jié)構(gòu)如下:
把配置文件文件夾deployEnv放到和src文件夾同級(jí)思犁,在下面創(chuàng)建三個(gè)環(huán)境對(duì)應(yīng)的文件夾,要以環(huán)境版本做為文件夾名稱(chēng)进肯,在各個(gè)環(huán)境的文件夾下面書(shū)寫(xiě)各自所需的配置文件激蹲。
2.pom.xml中resource屬性配置
需要在pom.xml文件中的build屬性,加上資源文件拷貝的配置
<!-- 為了方便讀者定位江掩,把整段的build屬性粘過(guò)來(lái)了-->
<build>
<finalName>****</finalName>
<resources>
<resource>
<directory>src/main/resources</directory>
<includes>
<include>*.properties</include>
<include>**/*.xml</include>
</includes>
<filtering>true</filtering>
</resource>
<!-- 在resources中加上這個(gè)resource屬性-->
<resource>
<!-- 拷貝資源的原始路徑学辱,為deployEnv文件夾下面的-->
<!-- ${env}為當(dāng)前激活的profile對(duì)應(yīng)的環(huán)境版本-->
<directory>deployEnv/${env}</directory>
<targetPath>${project.build.directory}/classes</targetPath>
<filtering>true</filtering>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>2.5</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.2</version>
</plugin>
<!-- 資源文件拷貝插件 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.7</version>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<!-- java編譯插件 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<configuration>
<port>9003</port>
<path>/</path>
</configuration>
</plugin>
</plugins>
</build>
配置完畢,在idea開(kāi)發(fā)工具中可以快速設(shè)置激活profile频敛,
在本機(jī)開(kāi)發(fā)環(huán)境中選擇激活dev profile项郊,那么在本機(jī)maven構(gòu)建項(xiàng)目的時(shí)候,使用的是deployEnv文件夾下dev下的配置文件斟赚。
3.Jenkins配置
在Jenkins中着降,進(jìn)入項(xiàng)目的配置,找到Build標(biāo)簽拗军,在Goals and options文本框中輸入: clean install -P test任洞,這是maven的命令,作用是发侵,先清理項(xiàng)目交掏,然后構(gòu)建項(xiàng)目, -P test的意思是使用 test profile 進(jìn)行項(xiàng)目的構(gòu)建刃鳄,這樣在構(gòu)建測(cè)試環(huán)境的時(shí)候盅弛,使用的是deployEnv文件夾下test下的配置文件。
這樣的管理配置文件的方式是不是很簡(jiǎn)單呢叔锐?歡迎大家來(lái)溝通交流~
謝謝大家挪鹏!