持續集成(Continuous Intergration)作爲軟件開發重要環節,已經被提出、實施了不少年,在國內IT行業也已普及,它是爲敏捷開發而建立。經過引入CI,能夠減小重複工做、儘早暴露系統問題。html
1, 可以自動從源碼管理系統(SVN、Git)中獲取源碼並編譯java
2, 可以自動運行單元測試git
3, 可以自動部署到測試服務器web
4, 可以自動發郵件向管理員報告集成結果redis
Jenkins是一個開源的CI軟件,有至關多的插件以及自帶Web管理界面。到官網下載對應操做系統安裝包(本文以Windows爲例),一路選擇默認設置便可安裝完畢。spring
第一次安裝好後,會彈出頁面讓你輸入管理員keyapache
安裝後還須要設置一些配置參數,如郵件服務器、賬號等。json
點擊系統管理->系統設置,設置Mail相關參數。api
Jenkins URL:後臺管理地址,能夠根據實際狀況修改端口號tomcat
系統管理員郵件地址:須要與下面的Reply-To Address同樣。
注意:若是此處和我同樣用163的郵箱服務器,密碼一欄不是郵箱賬號的登陸密碼,而是在163網頁郵箱中設置的客戶端登錄密碼。
能夠在系統管理->全局工具配置中設置JDK,Maven等軟件安裝目錄
點擊左邊導航欄「新建任務」,輸入任務名稱,選擇項目類型爲「構建自由風格的軟件項目」
若是你看到界面和個人不同,那是由於安裝的插件不同,在插件管理中選擇對應的插件安裝。
建立好任務後,須要設置源碼位置、構建觸發器、構建以及構建後操做。
源碼管理配置用於Jenkins自動獲取源碼。
Repository URL:你的倉庫地址,上圖填寫的是SVN配置,Git配置以下圖。實際測試發現SVN獲取的源碼並非最新的(當提交完代碼當即手動構建是會出現該問題),由於獲取源碼插件是以時間戳下載,而不是以版本號。解決辦法是在svn地址後面加上@HEAD。
Credentials: 你的SVN或Git賬號
構建觸發器指定構建觸發條件,能夠是定時構建,也能夠是根據事件觸發(好比上傳代碼觸發)。
示例表示每小時構建一次
構建指定Build時要執行的參數,主要參數有clean package install等maven參數。若有用到其它Maven插件,還需添加maven插件相關參數,如checkstyle:check。
這裏的Maven就是在全局工具配置中設置的Maven。
上面Goals(clean checkstyle:check package)表示先清理工程,而後檢查代碼規範,最後打包項目爲war包。代碼規範檢查用的是maven checkstyle插件,該插件須要配置pom.xml。
<reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>3.0.0</version> <reportSets> <reportSet> <reports> <report>checkstyle</report> </reports> </reportSet> </reportSets> </plugin> </reporting>
正確的作法是先在eclipse中正確調通maven,而後才把這些參數寫在Jenkins中。
構建後操做包括髮布到測試服務器以及發送郵件通知。須要先配置tomcat賬號、pom.xml。
Tomcat安裝目錄/onfig/tomcat-users.xm添加賬號,重啓tomcat。
<role rolename="manager-script"/> <user username="admin" password="admin" roles="manager-script"/>
Content Path: 若是直接發佈到根目錄,則只需寫「/」, 插件自動打包爲root.war。
上面的admin就是tomcat中配置的賬號。
配置好任務各項參數後,點擊當即構造就能看到運行結果。若是失敗,能夠點擊控制檯輸出,查看失敗緣由。
關於CI與Docker的集成本次沒有涉及,在實踐CI過程當中,碰到的問題絕大多數與Jenkins自己無關,而與Maven、tomcat、git相關。
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.bf</groupId> <artifactId>fuqinghome</artifactId> <version>1</version> <packaging>war</packaging> <build> <sourceDirectory>src/com/bf</sourceDirectory> <resources> <resource> <directory>resources</directory> </resource> </resources> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.5.1</version> <configuration> <source>1.8</source> <target>1.8</target> <encoding>utf8</encoding> <compilerArguments> <bootclasspath>${java.home}/lib/rt.jar;${java.home}/lib/jce.jar</bootclasspath> </compilerArguments> </configuration> </plugin> <plugin> <artifactId>maven-war-plugin</artifactId> <version>3.0.0</version> <configuration> <webXml>webapp\WEB-INF\web.xml</webXml> <warSourceDirectory>webapp</warSourceDirectory> </configuration> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>3.0.0</version> <reportSets> <reportSet> <reports> <report>checkstyle</report> </reports> </reportSet> </reportSets> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <version>3.0.6-SNAPSHOT</version> </plugin> </plugins> </reporting> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>2.5</version> </dependency> <dependency> <groupId>commons-httpclient</groupId> <artifactId>commons-httpclient</artifactId> <version>3.1</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.6</version> </dependency> <dependency> <groupId>commons-dbcp</groupId> <artifactId>commons-dbcp</artifactId> <version>1.4</version> </dependency> <dependency> <groupId>commons-fileupload</groupId> <artifactId>commons-fileupload</artifactId> <version>1.3.3</version> </dependency> <dependency> <groupId>commons-beanutils</groupId> <artifactId>commons-beanutils</artifactId> <version>1.8.0</version> </dependency> <dependency> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> <version>3.2.1</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>4.3.13.RELEASE</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <version>4.3.13.RELEASE</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-tx</artifactId> <version>4.3.13.RELEASE</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <version>4.3.13.RELEASE</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>4.3.13.RELEASE</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context-support</artifactId> <version>4.3.13.RELEASE</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-jdbc</artifactId> <version>4.3.13.RELEASE</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-support</artifactId> <version>2.0.6</version> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.17</version> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>4.0.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>3.4.1</version> </dependency> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis-spring</artifactId> <version>1.3.2</version> </dependency> <dependency> <groupId>net.sf.json-lib</groupId> <artifactId>json-lib</artifactId> <version>2.4</version> <classifier>jdk15</classifier> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.5.3</version> </dependency> <dependency> <groupId>io.swagger</groupId> <artifactId>swagger-annotations</artifactId> <version>1.5.19</version> </dependency> <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>2.8.0</version> </dependency> <dependency> <groupId>net.sourceforge.jexcelapi</groupId> <artifactId>jxl</artifactId> <version>2.6.12</version> </dependency> <dependency> <groupId>org.dom4j</groupId> <artifactId>dom4j</artifactId> <version>2.1.0</version> </dependency> <dependency> <groupId>com.thoughtworks.xstream</groupId> <artifactId>xstream</artifactId> <version>1.4.10</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.9.5</version> </dependency> <dependency> <groupId>org.freemarker</groupId> <artifactId>freemarker</artifactId> <version>2.3.28</version> </dependency> <dependency> <groupId>xmlpull</groupId> <artifactId>xmlpull</artifactId> <version>1.1.3.1</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.9.5</version> </dependency> <dependency> <groupId>com.jslsolucoes</groupId> <artifactId>ojdbc6</artifactId> <version>11.2.0.1.0</version> </dependency> <dependency> <groupId>redis.clients</groupId> <artifactId>jedis</artifactId> <version>2.9.0</version> </dependency> </dependencies> </project>
Spring Boot發佈到Linux
新項目採用Spring Boot開發,而且佈署到Linux,相關配置以下參照,https://www.jianshu.com/p/d4f2953f3ce0
start.sh
\#!/bin/bash export JAVA_HOME=/usr/local/jdk1.8.0_201 echo ${JAVA_HOME} PROJECTNAME=assistant-admin echo "*******begin to get pid*********" pid=`ps -ef |grep $PROJECTNAME |grep -v "grep" |awk '{print $2}' ` echo "pid is:" echo $pid echo "*******begin to kill*********" kill -9 $pid echo "****************" echo "*******begin to start*********" source /etc/profile nohup java -jar assistant-admin-1.jar >> log.out 2>&1 &
遠程執行sh提示沒有java,請參照https://blog.csdn.net/u013189824/article/details/85338221
sh文件格式形成問題,請參照https://jingyan.baidu.com/article/215817f788e8c21eda1423ea.html