springboot项目打包成war包

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot项目打包成war包相关的知识,希望对你有一定的参考价值。

1、在pom.xml文件中修改

<packaging>war</packaging>

2、移除springboot自带的tomcat
<!--移除自带的tomcat-->

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
<scope>provided</scope>
</dependency>

3、在启动类上继承SpringBootServletInitializer

添加以下内容

@SpringBootApplicationbr/>@EnableScheduling
public class JavaSayApplication extends SpringBootServletInitializer {

public static void main(String[] args) {
SpringApplication.run(JavaSayApplication.class, args);
}

/将springboot项目打包成war/
protected SpringApplicationBuilder configure(SpringApplicationBuilder builder) {
// 注意这里要指向原先用main方法执行的Application启动类
return builder.sources(JavaSayApplication.class);
}

}

4.

maven clean
maven package

技术图片

以上是关于springboot项目打包成war包的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot如何打包项目?

SpringBoot 项目运行在 tomcat7 上

SpringBoot项目打包war发布到Jetty9

springboot项目打包成war用tomcat运行好还是打包成jar直接启动好?为何?

Spring Boot项目打包成war包

SpringBoot之通过Maven将项目打包成ROOT.war-yellowcong