四、Web开发(11)

3)、替换为其他嵌入式Servlet容器

四、Web开发(11)_第1张图片

默认支持:

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

你可能感兴趣的:(四、Web开发(11))