Spring Boot默认支持:
Tomcat(默认使用)
org.springframework.boot
spring-boot-starter-web
引入web模块默认就是使用嵌入式的Tomcat作为Servlet容器;
切换Jetty
org.springframework.boot
spring-boot-starter-web
spring-boot-starter-tomcat
org.springframework.boot
spring-boot-starter-jetty
org.springframework.boot
切换Undertow
org.springframework.boot
spring-boot-starter-web
spring-boot-starter-tomcat
org.springframework.boot
spring-boot-starter-undertow
org.springframework.boot
学习内容来自尚硅谷