Maven打包并生成運(yùn)行腳本的示例代碼
1.定義插件
<properties>
<maven-jar-plugin.version>2.4</maven-jar-plugin.version>
<maven-assembly-plugin.version>2.4</maven-assembly-plugin.version>
<maven-compiler-plugin.version>3.7.0</maven-compiler-plugin.version>
</properties>
<plugins>
<!-- compiler -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
</executions>
</plugin>
<!--jar plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>${maven-jar-plugin.version}</version>
<configuration>
<archive>
<addMavenDescriptor>true</addMavenDescriptor>
<manifest>
<addClasspath>true</addClasspath>
<!--<mainClass></mainClass>-->
</manifest>
</archive>
<excludes>
<!--<exclude></exclude>-->
</excludes>
</configuration>
</plugin>
<!--assembly plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>${maven-assembly-plugin.version}</version>
<configuration>
<descriptors>
<descriptor>${project.basedir}/../assembly/assembly.xml</descriptor>
</descriptors>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
2.assembly配置
<assembly>
<id>bin</id>
<formats>
<format>tar.gz</format>
</formats>
<dependencySets>
<!-- runtime scope jar -->
<dependencySet>
<useProjectArtifact>false</useProjectArtifact>
<outputDirectory>lib</outputDirectory>
<unpack>false</unpack>
<scope>runtime</scope>
</dependencySet>
<!-- system scope jar -->
<dependencySet>
<useProjectArtifact>false</useProjectArtifact>
<outputDirectory>lib</outputDirectory>
<unpack>false</unpack>
<scope>system</scope>
</dependencySet>
</dependencySets>
<fileSets>
<!-- script -->
<fileSet>
<directory>${project.basedir}/../scripts</directory>
<outputDirectory>bin</outputDirectory>
<fileMode>0644</fileMode>
<directoryMode>0755</directoryMode>
<filtered>true</filtered>
</fileSet>
<!-- config -->
<fileSet>
<directory>${project.basedir}/src/main/resources</directory>
<outputDirectory>config</outputDirectory>
<fileMode>0644</fileMode>
<directoryMode>0755</directoryMode>
<includes>
<include>*.xml</include>
<include>*.json</include>
<include>*.properties</include>
</includes>
<filtered>true</filtered>
</fileSet>
<!-- the project jar -->
<fileSet>
<directory>${project.build.directory}</directory>
<outputDirectory>lib</outputDirectory>
<includes>
<include>*.jar</include>
</includes>
</fileSet>
<!-- Document -->
<fileSet>
<directory>${project.basedir}</directory>
<outputDirectory>doc</outputDirectory>
<includes>
<include>README*</include>
<include>LICENSE*</include>
<include>NOTICE*</include>
</includes>
</fileSet>
</fileSets>
</assembly>
3.腳本
#!/bin/sh
#server id -- change
SERVER_ID=
#java home
JAVA_HOME=
#java command
JAVA_CMD=`which java`
#jvm option
JVM_OPT="-Xmx1024M -Xms512M -server -XX:+PrintGCDetails -XX:+PrintGCDateStamps"
#jar name
JAR=${project.artifactId}-${project.version}.jar
#main class
MAIN_CLASS=${MainClass}
# main class args
ARGS="${StartArgs}"
#environment
ENVIRONMENT=${profiles.environment}
#cd working path
cd_working_path(){
cd `dirname $0`
cd ..
}
#jar
jar(){
WK_PATH=`pwd`
/usr/bin/nohup ${JAVA_CMD} -Denvironment=${ENVIRONMENT} -Dlog4j.configurationFile=${WK_PATH}/config/log4j2.xml ${JVM_OPT} -cp ${WK_PATH}/lib/${JAR}:${WK_PATH}/lib/* ${MAIN_CLASS} ${ARGS} >/dev/null 2>&1 &
}
#get pid
get_pid(){
echo `ps -ef | grep ${JAR} | grep server_id=${SERVER_ID} |grep -v 'grep' |awk '{print $2}'`
}
#check
check(){
#check server id
if [ ! -n "$SERVER_ID" ];then
echo "Please set up the server id 'SERVER_ID'"
exit
fi
}
#start service
start(){
#check
check
#check pid
PID=`get_pid`
if [ -n "$PID" ];then
echo "Process exists, PID >> "${PID}
exit
fi
#check java
if [ -n "$JAVA_HOME" ];then
JAVA_CMD=${JAVA_HOME}/bin/java
fi
#start service
${JAVA_CMD} -version
jar
#check
if [ $? -ne 0 ];then
echo "Service startup failed."
exit
fi
#check service
PID=`get_pid`
if [ ! -n "$PID" ];then
echo "Service startup failed."
else
echo "Service startup success, Current environment is ${ENVIRONMENT} , PID >> "${PID}
fi
}
#stop service
stop(){
#check
check
#check pid
PID=`get_pid`
if [ ! -n "$PID" ];then
echo "Process not exists."
else
kill ${PID}
echo "Kill pid >> '$PID'"
if [ $? -ne 0 ];then
echo "Service shutdown failed."
exit
else
echo "Service shutdown success."
fi
fi
}
#restart service
restart(){
#stop service
stop
COUNT=0
while true
do
PID=`get_pid`
if [ ! -n "$PID" ];then
#start service
start
break
else
let COUNT++
echo "Restarting..."
if [ ${COUNT} -eq 3 ];then
echo "Restart error"
exit
fi
fi
sleep 3
done
}
#check state
state(){
PID=`get_pid`
if [ ! -n "$PID" ];then
echo "Service not exists."
else
echo "Service status is normal, PID >> '$PID'"
fi
}
#main
main(){
#cd working path
cd_working_path
if [ ! -n "$1" ];then
echo "***********************************************"
echo "* start : Start service *"
echo "* stop : Stop service *"
echo "* restart : Restart service *"
echo "* state : Check service state *"
echo "***********************************************"
read -p "Please choose >> ": CASE
PARAMETER=${CASE}
else
PARAMETER=$1
fi
case "$PARAMETER" in
start)
start
;;
stop)
stop
;;
restart)
restart
;;
state)
state
;;
*)
main
;;
esac
}
main $1
PS:下面看下Maven打包生成可運(yùn)行bat/sh腳本文件
利用Maven的appassembler-maven-plugin插件,就可以實(shí)現(xiàn)自動(dòng)打包可運(yùn)行的腳本,還可以跨平臺(tái)。
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>appassembler-maven-plugin</artifactId>
<version>1.1.1</version>
<configuration>
<repositoryLayout>flat</repositoryLayout>
<repositoryName>lib</repositoryName>
<configurationSourceDirectory>src/main/resources/conf</configurationSourceDirectory>
<!-- Set the target configuration directory to be used in the bin scripts -->
<configurationDirectory>conf</configurationDirectory>
<!-- Copy the contents from "/src/main/config" to the target configuration
directory in the assembled application -->
<copyConfigurationDirectory>true</copyConfigurationDirectory>
<!-- Include the target configuration directory in the beginning of
the classpath declaration in the bin scripts -->
<includeConfigurationDirectoryInClasspath>true</includeConfigurationDirectoryInClasspath>
<!-- prefix all bin files with "mycompany" -->
<binPrefix>startup</binPrefix>
<!-- set alternative assemble directory -->
<assembleDirectory>${project.build.directory}/server</assembleDirectory>
<!-- Extra JVM arguments that will be included in the bin scripts -->
<extraJvmArguments>-Xms768m -Xmx768m -XX:PermSize=128m
-XX:MaxPermSize=256m -XX:NewSize=192m -XX:MaxNewSize=384m
</extraJvmArguments>
<!-- Generate bin scripts for windows and unix pr default -->
<platforms>
<platform>windows</platform>
<platform>unix</platform>
</platforms>
<programs>
<program>
<mainClass>com.coderli.onecoder.server.HypervisorServer</mainClass>
<name>startup</name>
</program>
</programs>
</configuration>
</plugin>
然后選擇要編譯的工程,右鍵->maven build… 命令如下圖:
package appassembler:assemble

然后執(zhí)行run,一個(gè)可執(zhí)行的腳本文件就生成好了。startup.bat是windows下的,startup.sh是linux下的

總結(jié)
到此這篇關(guān)于Maven打包并生成運(yùn)行腳本的文章就介紹到這了,更多相關(guān)Maven打包并生成運(yùn)行腳本內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
Spring?Boot?使用?Disruptor?做內(nèi)部高性能消息隊(duì)列
這篇文章主要介紹了Spring?Boot?使用?Disruptor?做內(nèi)部高性能消息隊(duì)列,工作中遇到項(xiàng)目使用Disruptor做消息隊(duì)列,對(duì)你沒看錯(cuò),不是Kafka,也不是rabbitmq。Disruptor有個(gè)最大的優(yōu)點(diǎn)就是快,還有一點(diǎn)它是開源的哦,下面做個(gè)簡(jiǎn)單的記錄2022-06-06
springboot工程jar包部署到云服務(wù)器的方法
這篇文章主要介紹了springboot工程jar包部署到云服務(wù)器的方法,本文通過實(shí)例介紹的非常詳細(xì),具有一定的參考借鑒價(jià)值,需要的朋友參考下吧2018-05-05
jdk7 中HashMap的知識(shí)點(diǎn)總結(jié)
HashMap的原理是老生常談了,不作仔細(xì)解說。一句話概括為HashMap是一個(gè)散列表,它存儲(chǔ)的內(nèi)容是鍵值對(duì)(key-value)映射。這篇文章主要總結(jié)了關(guān)于jdk7 中HashMap的知識(shí)點(diǎn),需要的朋友可以參考借鑒,一起來看看吧。2017-01-01
SpringBoot動(dòng)態(tài)修改日志級(jí)別的操作
這篇文章主要介紹了SpringBoot動(dòng)態(tài)修改日志級(jí)別的操作,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教2021-07-07
mybatis-plus動(dòng)態(tài)數(shù)據(jù)源讀寫分離方式
Maven和IntelliJ IDEA搭建多模塊微服務(wù)的實(shí)現(xiàn)
selenium+java+chrome環(huán)境搭建的方法步驟
Java面向?qū)ο缶幊讨^承和多態(tài)以及包的解析與使用范例

