其他分享
首页 > 其他分享> > Spring Boot基础(七)SpringBoot部署

Spring Boot基础(七)SpringBoot部署

作者:互联网

部署成jar包和war包两种方式,jar包是自带tomcat的,也是推荐使用的方法,直接使用maven的package即可

 打包后的名字是比较长的,如果希望自定义,可以在pom.xml的build中配置<filename>springboot</filename>,这样打包后名字不会太长

 如果测试代码出错,可以尝试无视错误,添加以下配置,直接打包

<plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <configuration>
                    <testFailureIgnore>true</testFailureIgnore>
                </configuration>
 </plugin>

 

jar包会输出在target文件夹里,直接在dos路径java -jar xxx.jar即可启动项目

 

 

如果需要打包war包,需要在pom.xml中添加打包方式(不推荐war包,因为修改配置文件相对麻烦)

<groupId>com.yz</groupId>
    <artifactId>sprintboot-my-un</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>sprintboot-my-un</name>
    <description>sprintboot-my-un</description>
    <packaging>war</packaging>   

并在主类继承 SpringBootServletInitializer 类,并重写 configure 方法,然后将当前主类的class配置进去即可

 @Override
    protected SpringApplicationBuilder configure(SpringApplicationBuilder builder) {
        return builder.sources(SprintbootMyUnApplication.class);
    }

启动war包则需要将其放至tomcat的webapps目录下,再启动tomcat即可 

 

标签:SpringBoot,sprintboot,Spring,Boot,jar,maven,un,war,打包
来源: https://www.cnblogs.com/yuan-zhou/p/15834697.html