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

Spring Boot 分离打包

时间:2021-01-02 11:02:04      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:path   exec   framework   jar   spring   sts   ack   test   打包   

1、首先打出正常的 jar 包,解压后将 lib 上传到服务器
2、修改 pom,重新打包

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <configuration>
                    <layout>ZIP</layout>
                    <includes>
                        <include>
                            <groupId>nothing</groupId>
                            <artifactId>nothing</artifactId>
                        </include>
                    </includes>
                </configuration>
                <executions>
                    <execution>
                        <goals>
                            <goal>repackage</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.22.1</version>
                <configuration>
                    <skipTests>true</skipTests>
                </configuration>
            </plugin>
            <!--添加配置跳过测试-->
        </plugins>
    </build>

3、运行 jar 包

nohup java -Dloader.path=/www/wwwroot/lib -jar xxx.jar &

Spring Boot 分离打包

标签:path   exec   framework   jar   spring   sts   ack   test   打包   

原文地址:https://blog.51cto.com/13559120/2576623

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