SpringBoot使用其他的Servlet容器

Posted Coreqi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot使用其他的Servlet容器相关的知识,希望对你有一定的参考价值。

 1         <dependency>
 2             <groupId>org.springframework.boot</groupId>
 3             <artifactId>spring-boot-starter-web</artifactId>
 4             <!--在Web模块中排除默认的Tomcat-->
 5             <exclusions>
 6                 <exclusion>
 7                     <groupId>org.springframework.boot</groupId>
 8                     <artifactId>spring-boot-starter-tomcat</artifactId>
 9                 </exclusion>
10             </exclusions>
11         </dependency>
12 
13         <!--引入其他的servlet容器-->
14         <dependency>
15             <groupId>org.springframework.boot</groupId>
16             <artifactId>spring-boot-starter-jetty</artifactId>
17         </dependency>

 

以上是关于SpringBoot使用其他的Servlet容器的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot起飞系列-配置嵌入式Servlet容器

SpringBoot源码学习系列之嵌入式Servlet容器

SpringBoot源码学习系列之嵌入式Servlet容器

SpringBoot2---Web原生组件注入(ServletFilterListener)和嵌入式Servlet容器

SpringBoot 源码解析 ----- Spring Boot的核心能力 - 内置Servlet容器源码分析(Tomcat)

springboot 嵌入式Servlet容器自动配置原理和容器启动原理