本篇文章帶給大家的內容是關於SpringBoot如何進行簡單的打包部署?有一定的參考價值,有需要的朋友可以參考一下,希望對你有幫助。
本文主要介紹SpringBoot的一些打包事項和專案部署以及在其中遇到一些問題的解決方案。
在SpringBoot打包這塊,我們就用之前的一個web專案來進行打包。
首先需要明確的是,該專案打包的形態是可執行的jar包,還是在tomcat下運行的war套件。
雖然本專案是用maven建置的,用maven打包也更方便,但是這裡也說明普通非maven打包的專案如何打包。
首先是maven方式打包:
如果是jar套件
需要在pom.xml
指定打成的套件為:
<packaging>jar</packaging>
如果是war套件。
需要在pom.xml
指定打成的套件為:
<packaging>war</packaging>
並透過<scope>
標籤在打包的時候排除tomcat 依賴
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-tomcat</artifactId> <scope>provided</scope> </dependency>
然後添加SpringBoot自帶的打包方式
範例如下:##
<build> <defaultGoal>compile</defaultGoal> <sourceDirectory>src</sourceDirectory> <finalName>springboot-package</finalName> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin </artifactId> <configuration> <fork>true</fork> <mainClass>com.pancm.App</mainClass> </configuration> <executions> <execution> <goals> <goal>repackage</goal> </goals> </execution> </executions> </plugin> </plugins> </build>
註:標籤是指定打包之後的名稱,
是指定main函式。
SpringBoot自帶的打包方式,使用maven的assembly外掛程式來打包。
範例如下:
<build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>2.5.5</version> <configuration> <archive> <manifest> <mainClass>com.pancm.App</mainClass> </manifest> </archive> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> </configuration> </plugin> </plugins> </build>
pom.xml#中加入對應的標籤之後,我們只需在專案同級(pom.xml同級)輸入
mvn clean package
如果想排除測試程式碼,則可以輸入:
mvn clean package -Dmaven.test.skip=true
application.properties和logback.xml檔案放在resources資料夾中,但是進行包裝之後,它們也會包含在 jar或war套件中,如果我們想更改配置,則會比較麻煩。 如果想將它們和項目放在同級目錄下,
application.properties可以直接移出和項目同級的目錄下,因為Spring程式會按優先順序從下面這些路徑來載入application.properties設定檔:
springboot預設載入的logback是在classpath目錄下,這時我們只需要在application.properties設定檔指定logback.xml的路徑即可。 新增如下:
logging.config=logback.xml
jar包,但是又無法透過maven私服下載,這時可以手動進行編譯。 例如,我寫了一個工具類別為
Mytools,然後把它打成了一個jar包,然後放在我的這個專案中lib目錄下,並且需要引用它,那麼此時便可以對該jar包進行編譯到本地倉庫中,然後再pom.xml添加相應的名稱和版本號。 指令範例:
mvn install:install-file -Dfile=lib/pancmtools.jar -DgroupId=com.panncm.utils -DartifactId=pancm-utils -Dversion=1.0 -Dpackaging=jar
pom.xml新增
<dependency> <groupId>com.panncm.utils</groupId> <artifactId>pancm-utils</artifactId> <version>1.0</version> </dependency>
maven建置的話,可以使用eclipse等工具進行打包。 如果是
jar套件首先在
eclipse中執行該專案(main方法執行),然後在eclipse中右鍵項目export ->java -> runnable jar file-> package required libraries into generated jar 指定
main方法,然後選擇打包的名稱以及打包的路徑。點選finish完成打包。
war套件在
eclipse中右鍵項目export ->web -> war file,然後選擇打包的名稱以及打包的路徑。點選
finish完成打包。
ant方法進行打包(需要安裝ant環境,安裝方式基本上和maven一致,指定路徑,配置環境變量,這裡就不在過多講述了)。 一般打包之後,我們需要將套件和設定檔放在一個目錄下,這時我們又不想手動進行複製貼上的話,就可以用
ant來進行打包,將打包的檔案整合在一起。 這裡我們就寫一個
build.xml的設定檔。
<?xml version="1.0" encoding="UTF-8"?> <project name="springboot-package" default="copyAll" basedir="."> <property name="build" value="build" /> <property name="target" value="target" /> <target name="clean"> <delete dir="${target}" /> <delete dir="${build}" /> </target> <target name="create-path" depends="clean"> <mkdir dir="${build}" /> </target> <target name="mvn_package" depends="create-path"> <exec executable="cmd" failonerror="true"> <arg line="/c mvn install:install-file -Dfile=lib/pancmtools.jar -DgroupId=com.panncm.utils -DartifactId=pancm-utils -Dversion=1.0 -Dpackaging=jar" /> </exec> <exec executable="cmd" failonerror="true"> <arg line="/c mvn clean package" /> </exec> </target> <target name="copyAll" depends="mvn_package"> <copy todir="${build}" file="${target}/springboot-package.jar"></copy> <copy todir="${build}" file="logback.xml"></copy> <copy todir="${build}" file="application.properties"></copy> <copy todir="${build}" file="run.bat"></copy> </target> </project>
注:<mkdir dir="${build}" />
是指定文件存放的文件夹,executable是使用cmd命令,line是执行的语句, 标签是将文件复制到指定的文件夹中。
然后再新建一个 build.bat文件,里面只需要填写 ant
就行了。
准备完之后,只需双击build.bat,项目和配置文件就自动到build文件中了,省去了很多操作。
虽然现在流行通过jenkins进行打包部署,不过使用ant加maven进行打包也不错的,比较简单。
解决办法一:
在properties添加<maven.compiler.source>1.8</maven.compiler.source>
和<maven.compiler.target>1.8</maven.compiler.target>
<properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <java.version>1.8</java.version> <fastjson>1.2.41</fastjson> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> </properties>
解决方案二:
在plugin中添加 <source>1.8</source>
和 <target>1.8</target>
<build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.3</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> </plugins> </build>
实际是可以下载,但是无法将此打入包中
解决办法:
在pom.xml中添加
<repositories> <repository> <id>spring-milestone</id> <url>http://repo.spring.io/libs-release</url> </repository> </repositories>
原因: 在clean的时候,target里面的文件被占用了。
解决办法: 不占用就行了。
如果是jar项目
Windows系统在项目同级目录下输入:
java -jar springboot-package
即可启动项目。
关闭项目,只需关掉dos界面就可以了。
也可以写一个bat文件进行运行。
示例:
@echo off title "springboot-package" java -jar springboot-package.jar
Linux系统在项目同级目录下输入:
nohup -jar springboot-package &
即可启动。
关闭输入:
kill -9 pid(jar的进程id)
也可以在init.d
注册一个服务
示例:
ln -s /home/jars/app/springboot-package.jar /etc/init.d/springboot-package chmod +x /etc/init.d/springboot-package
然后输入:
service springboot-package start|stop|restart
进行启动或者停止。
当然也可以编写xshell脚本进行启动和关闭。
示例:
#!/bin/bash APPDIR=`pwd` PIDFILE=$APPDIR/springboot-package.pid if [ -f "$PIDFILE" ] && kill -0 $(cat "$PIDFILE"); then echo "springboot-package is already running..." exit 1 fi nohup java -jar $APPDIR/springboot-package.jar >/dev/null 2>&1 & echo $! > $PIDFILE echo "start springboot-package..."
如果是war项目
将war放在tomcat/webapp目录下,然后启动tomcat就可以了。Windows系统 在tomcat/bin目录下双击startup.bat即可启动,双击shutdown.bat关闭。
Linux系统则在tomcat/bin 目录下输入startup.sh即可启动, 输入shutdown.sh关闭
附SpringBoot打包部署的项目工程地址:
https://github.com/xuwujing/springBoot-study/tree/master/springboot-package
相关推荐:
编写简单的Mapreduce程序并部署在Hadoop2.2.0上运行
以上是SpringBoot如何進行簡單的打包部署?的詳細內容。更多資訊請關注PHP中文網其他相關文章!