spring boot 中容器 Jetty、Tomcat、Undertow

放肆的年华 提交于 2021-01-04 03:35:44

spring boot 中依赖tomcat 

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>

web 中默认对 tomcat 依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
<version>2.1.2.RELEASE</version>
<scope>compile</scope>
</dependency>

spring boot 中 依赖 jetty

去除tomcat
<
dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-jetty</artifactId> <version>2.1.4.RELEASE</version> </dependency>

spring boot 中依赖 Undertow

 去除tomcat
<
dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-undertow</artifactId> <version>2.1.4.RELEASE</version> </dependency>

 

不同容器性能参考:https://www.cnblogs.com/duanxz/p/9337022.html

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!