springboot打包jar

操作:

  1. 关闭执行中的程序

  2. 执行命令mvn clean

  3. 执行命令mvn package

  4. 上面两句可合起来:mvn clean package

  5. 启动:java -jar xxxx.jar

注意事项:

一、如果打包过程中报“程序包com.sun.org.*不存在”错误

加入下面插件,刷新maven依赖,重新运行,

<plugin>
   <groupId>org.apache.maven.plugins</groupId>
   <artifactId>maven-compiler-plugin</artifactId>
   <version>3.7.0</version>
   <configuration>
       <source>1.8</source>
       <target>1.8</target>
       <compilerArgs>
           <arg>-XDignore.symbol.file</arg>
       </compilerArgs>
       <fork>true</fork>
   </configuration>
</plugin>

二、如果打包好的jar执行时报“找不到或无法加载主类 或者 没有主清单属性”,在pom.xml中加入

<build>
   <plugins>
       <plugin>
           <groupId>org.springframework.boot</groupId>
           <artifactId>spring-boot-maven-plugin</artifactId>
           <version>2.1.4.RELEASE</version>
           <configuration>
               <fork>true</fork>
           </configuration>
       </plugin>
   </plugins>
</build>

 

然后重新打包

上一篇:Maven安装配置全教程


下一篇:mvn测试执行用例的常用的命令