码迷,mamicode.com
首页 > 编程语言 > 详细

SpringBoot 改用undertow 替换自带tomcat

时间:2020-02-14 18:43:52      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:star   servlet   scribe   ica   java   内存占用   span   dep   VID   

个人测试发现undertow 和 tomcat 性能都差不多,但是内存占用会少一点(大概少了10%),尝试换上去测一下,没发现什么毛病,下面记录一下切换使用的要点。

1. 排除tomcat 依赖

            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-web</artifactId>
                <version>${spring-boot.version}</version>
                <exclusions>
                    <exclusion>
                        <groupId>org.springframework.boot</groupId>
                        <artifactId>spring-boot-starter-tomcat</artifactId>
                    </exclusion>
                </exclusions>
            </dependency>

 

2. 使用 jakarta.servlet-api

提示原文如下

the contracts between a servlet class and the runtime environment provided for an instance of such a class by a conforming servlet container. For versions prior to 4.0.2 these classes and interfaces are described by the Java Servlet API Specification. For version 4.0.2 and later they are described by the Jakarta Servlet Specification

我们使用undertow 依赖 jakarta.servlet-api 这个包,在4.0.2 版本之后改用到  jakarta.servlet-api 这个包,好处是包更小了。

            <dependency>
                <groupId>jakarta.servlet</groupId>
                <artifactId>jakarta.servlet-api</artifactId>
                <version>${jakarta-servlet.version}</version>
            </dependency>

在要使用 HttpServletRequest  的时候添加 Jakarta 依赖就可以了。

测试项目使用的springboot 版本为 2.2.2.RELEASE, Jakarta 版本为 4.0.3。

 

SpringBoot 改用undertow 替换自带tomcat

标签:star   servlet   scribe   ica   java   内存占用   span   dep   VID   

原文地址:https://www.cnblogs.com/Lite/p/12308263.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!