在部署到Servlet容器之前,如何生成包含SpringBoot的War文件
Posted zhangmingcsdn
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在部署到Servlet容器之前,如何生成包含SpringBoot的War文件相关的知识,希望对你有一定的参考价值。
SpringBoot有2种启动方式,通过main方法启动和实现SpringBootServletInitializer方式。如果要在Tomcat或Jetty等容器中运行SpringBoot时(类似web.xml配置方式),还需要添加一些操作。
1)新建一个类,继承SpringBootServletInitializer
public class MyMainSerlet extends SpringBootServletInitializer
@Override
protected SpringApplicationBuilder configure(SpringApplicationBuilder application)
return application.sources(Application.class);
2)修改pom.xml文件,添加packaging标签,值为war
<packaging>war</packaging>
3)移除SpringBoot中嵌入的Tomcat依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</exclusion>
</exclusions>
</dependency>
4)为了保证编译正确添加对Servlet-api的依赖
<dependency>
<groupId>org.apache.tomcat</groupId>
<artifactId>tomcat-servlet-api</artifactId>
<version>7.0.77</version>
<scope>provided</scope>
</dependency>
5)通过命令mvn package生成war即可
以上是关于在部署到Servlet容器之前,如何生成包含SpringBoot的War文件的主要内容,如果未能解决你的问题,请参考以下文章
在使用 SpringMVC 时,Spring 容器是如何与 Servlet 容器进行交互的?
如何最好地将 JTidy 与 Spring servlet 容器一起使用?
基于 Servlet API 并部署到 Servlet 容器