spring boot 发布成包所需插件

Posted 甜菜波波

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring boot 发布成包所需插件相关的知识,希望对你有一定的参考价值。

在pom.xml里配置

 

<plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-shade-plugin</artifactId>
                <version>1.2.1</version>
                <executions>
                    <execution>
                        <phase>package</phase>
                        <goals>
                            <goal>shade</goal>
                        </goals>
                        <configuration>
                            <transformers>
                                <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
                                    <mainClass>com.example.demo.DemoApplication</mainClass>
                                </transformer>
                            </transformers>
                        </configuration>
                    </execution>
                </executions>
            </plugin>

生成的包就可以在服务器上 使用命令启动:java -jar  demo.jar

以上是关于spring boot 发布成包所需插件的主要内容,如果未能解决你的问题,请参考以下文章

Spring Boot 使用Jar打包发布, 并使用 Embedded Jetty/Tomcat 容器

解决spring-boot启动中碰到的问题:Cannot determine embedded database driver class for database type NONE(转)(代码片段

如何使用 spring-boot gradle 插件进行 proguard

带有 Spring Boot 中所需的显式 basePackages 的 IntegrationComponentScan?

一张图,理顺 Spring Boot应用在启动阶段执行代码的几种方式

Spring Boot MyBatis代码自动生成和辅助插件