springboottomcat详解(SpringBoot移除默认的Tomcat改用undertow)

随着微服务的兴起,越来越多的互联网应用在选择web容器时使用更加轻量的undertow,今天小编就来说说关于springboottomcat详解?下面更多详细答案一起来看看吧!

springboottomcat详解(SpringBoot移除默认的Tomcat改用undertow)

springboottomcat详解

随着微服务的兴起,越来越多的互联网应用在选择web容器时使用更加轻量的undertow。

SpringBoot默认使用的容器是tomcat,如果想换成undertow容器,只需修改pom.xml文件

修改如下:

<!-- 移除tomcat 改用 undertow--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <exclusions> <exclusion> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-tomcat</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-undertow</artifactId> </dependency>

,

免责声明:本文仅代表文章作者的个人观点,与本站无关。其原创性、真实性以及文中陈述文字和内容未经本站证实,对本文以及其中全部或者部分内容文字的真实性、完整性和原创性本站不作任何保证或承诺,请读者仅作参考,并自行核实相关内容。文章投诉邮箱:anhduc.ph@yahoo.com

    分享
    投诉
    首页