SpringCloud配置内嵌Web服务器使用Undertow或者Jetty

同步网站codeyou.co的文章,原创。

使用Undertow


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


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

使用Jetty


    3.1.0


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



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

你可能感兴趣的:(Java服务器,应用服务器,springboot)