springboot 2.1 实践教程(十)-嵌入式Servlet容器支持

Spring Boot包括对嵌入式Tomcat, Jetty和 Undertow服务器的支持。大多数开发人员使用适当的“Starter”来获取完全配置的实例。默认情况下,嵌入式服务器侦听端口上的HTTP请求8080。

三种内嵌Web容器介绍:

Tomcat:默认,最流行的Web容器

Jetty:性能优秀的内嵌Web容器,支持长连接

Undertow:非阻塞Web容器,性能优异,适用于高并发

 

Spring Boot 默认使用的Tomcat容器 spring-boot-starter-tomcat

springboot 2.1 实践教程(十)-嵌入式Servlet容器支持_第1张图片

 

如何替换其他容器呢?比如我现在想用Jetty替换Tomcat容器,方法很简单

步骤1:在pom.xml文件先排除spring-boot-starter-tomcat依赖,我们在spring-boot-starter-web下增加

exclusions


    org.springframework.boot
    spring-boot-starter-web
    
        
            spring-boot-starter-tomcat
            org.springframework.boot
        
    

 

步骤2:增加jetty的依赖


    org.springframework.boot
    spring-boot-starter-web
    
        
            spring-boot-starter-tomcat
            org.springframework.boot
        
    



    org.springframework.boot
    spring-boot-starter-jetty

 

启动程序后我们可以看到控制台显示了jetty相关信息,表明我们更换成功

以此类推,我们如果要是更换为undertow容器的,直接增加相关依赖就可以了

 

 
       org.springframework.boot
       spring-boot-starter-web
       
           
               spring-boot-starter-tomcat
               org.springframework.boot
           
       
   

   


   
       org.springframework.boot
       spring-boot-starter-undertow
   

 

以上就是Spring Boot2 更换容器的方式,需要注意的是Spring Boot 默认使用tomcat容器,如果使用其他容器则 先需要在pom文件中将其exclusion

你可能感兴趣的:(SpringBoot,Spring,Boot2.1实践教程)