SpringBoot使用外置的Servlet容器

时间:2022-09-15 21:13:08

SpringBoot默认使用嵌入式的Servlet容器,应用打包成可执行的jar包

优点:简单、便携

缺点:默认不支持jsp,优化定制比较复杂(使用定制器serverProperties、自定义EmbeddedServletContainerCustomizer,自己编写嵌入式Servlet容器的创建工厂EmbeddedServletContainerFactory)

*SpringBoot使用外置的Servlet容器条件

  1.安装外置Servlet容器【tomcat】

  2.使用war方式进行打包

(1)、使用Spring初始化向导创建war  SpringBoot项目

SpringBoot使用外置的Servlet容器

SpringBoot使用外置的Servlet容器

SpringBoot使用外置的Servlet容器

(2)在Project Structure窗口创建目录结构

SpringBoot使用外置的Servlet容器

SpringBoot使用外置的Servlet容器

SpringBoot使用外置的Servlet容器

(3)在运行窗口配置外置Tomcat

SpringBoot使用外置的Servlet容器

SpringBoot使用外置的Servlet容器

(4)修改配置文件

SpringBoot使用外置的Servlet容器

(5)将嵌入式的Tomcat指定为provided

SpringBoot使用外置的Servlet容器

(6)编写一个SpringBootServletInitializer的子类,并调用configure方法

 package cn.coreqi;

 import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer; /**
* 必须编写一个SpringBootServletInitializer的子类,并调用configure方法
*/
public class ServletInitializer extends SpringBootServletInitializer { @Override
protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
//传入SpringBoot应用的主程序
return application.sources(SpringbootwarApplication.class);
} }

(7)编写控制器、jsp页面后点击tomcat运行即可