springboot jar分离部署
注意:spring boot web项目别使用jsp页面,可以使用模板代替,jsp打包时访问页面会报404错误。
1.具体配置如下:
< build> < plugins> < plugin> < groupId> org.apache.maven.plugins</ groupId> < artifactId> maven-jar-plugin</ artifactId> < version> 3.1.1</ version> < configuration> < archive> < manifest> < addClasspath> true</ addClasspath> < classpathPrefix> lib/</ classpathPrefix> < mainClass> com.ms.serviceapi.ServiceapiApplication</ mainClass> </ manifest> </ archive> < excludes > < exclude> **/*.properties</ exclude> < exclude> **/*.xml</ exclude> < exclude> **/*.yml</ exclude> </ excludes> </ configuration> </ plugin> < plugin> < groupId> org.apache.maven.plugins</ groupId> < artifactId> maven-dependency-plugin</ artifactId> < executions> < execution> < id> copy-lib</ id> < phase> package</ phase> < goals> < goal> copy</ goal> </ goals> < configuration> < outputDirectory> target/lib</ outputDirectory> </ configuration> </ execution> </ executions> </ plugin> < plugin> < groupId> org.apache.maven.plugins</ groupId> < artifactId> maven-antrun-plugin</ artifactId> < executions> < execution> < phase> package</ phase> < goals> < goal> run</ goal> </ goals> < configuration> < target> < property name = " dist" value = " target/publish" > </ property> < property name = " dist-tmp" value = " ${dist}/tmp" > </ property> < property name = " app-name" value = " ${project.artifactId}-${project.version}" > </ property> < copy file = " target/${app-name}.jar" tofile = " ${dist}/${app-name}.jar" /> < delete dir = " ${dist}/${app-name}-classes.jar" /> < delete dir = " ${dist-tmp}" /> < move todir = " ${dist}/lib" > < fileset dir = " target/lib" /> </ move> < copy todir = " ${dist}" > < fileset dir = " target/classes" > < include name = " **/*.properties" /> < include name = " **/*.xml" /> < include name = " **/*.yml" /> </ fileset> </ copy> </ target> </ configuration> </ execution> </ executions> </ plugin> < plugin> < groupId> org.apache.maven.plugins</ groupId> < artifactId> maven-resources-plugin</ artifactId> < configuration> < delimiters> < delimit> ${*}</ delimit> </ delimiters> </ configuration> </ plugin> </ plugins> </ build>
2.打包目录如下:
lib
xxx.yml
xxx-1.0.jar
3.运行:
java -jar -Dloader.path = lib xxx.jar
4.assembly复制打包后的文件
< plugin> < groupId> org.apache.maven.plugins</ groupId> < artifactId> maven-assembly-plugin</ artifactId> < configuration> < descriptors> < descriptor> src/main/resources/assembly/package.xml</ descriptor> </ descriptors> </ configuration> < executions> < execution> < id> make-assembly</ id> < phase> package</ phase> < goals> < goal> single</ goal> </ goals> </ execution> </ executions> </ plugin>
4.1 package.xml配置文件
<?xml version="1.0" encoding="UTF-8"?>
< assemblyxmlns = " http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3" xmlns: xsi= " http://www.w3.org/2001/XMLSchema-instance" xsi: schemaLocation= " http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3 http://maven.apache.org/xsd/assembly-1.1.3.xsd" > < id> package</ id> < formats> < format> tar.gz</ format> < format> dir</ format> < format> zip</ format> </ formats> < includeBaseDirectory> true</ includeBaseDirectory> < dependencySets> < dependencySet> < outputDirectory> lib</ outputDirectory> </ dependencySet> </ dependencySets> < fileSets> < fileSet> < directory> ${project.build.directory}/classes</ directory> < outputDirectory> /</ outputDirectory> < includes> < include> **/*.properties</ include> </ includes> </ fileSet> < fileSet> < directory> ${project.build.directory}</ directory> < outputDirectory> /</ outputDirectory> < includes> < include> *.jar</ include> </ includes> </ fileSet> </ fileSets> < files> < file> < source> pom.xml</ source> < outputDirectory> .</ outputDirectory> < fileMode> 0755</ fileMode> < destName> pom.xml</ destName> </ file> </ files>
</ assembly>