码迷,mamicode.com
首页 > 编程语言 > 详细

007 springboot打包为jar

时间:2018-04-11 20:24:01      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:src   div   art   class   一个   spro   plc   exe   org   

一 .概述

springboot之中可以将项目的打包为一个jar文件,然后启动jar文件就启动了一个web容器了.


 

二 .配置

所有的打包全部都依赖于一个maven的插件它是springboot提供的.

我们看一下.:

    <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <configuration>
                    <mainClass>com.trek.SpringbootApplcationMain</mainClass>
                </configuration>
                <executions>
                    <execution>
                        <goals>
                            <goal>repackage</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>

以上是sprongboot的maven插件,我们使用这个插件就可以完成springboot的打包了 .


 

三 .项目启动

技术分享图片

好了,这就完成了springboot的jar文件打包.

 

007 springboot打包为jar

标签:src   div   art   class   一个   spro   plc   exe   org   

原文地址:https://www.cnblogs.com/trekxu/p/8798340.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!