SpringBoot2使用Undertow来提高应用性能(springbootstarterundertow)
Untertow 的特点
Servlet4.0 支持:它提供了对 Servlet4.0 的支持。
WebSocket 支持:对 Web Socket 完全支持,包括JSR-356,用以满足 Web 应用巨大数量的客户端。
嵌套性:它不需要容器,只需通过 API 即可快速搭建 Web 服务器。
灵活性:交由链式Handler配置和处理请求,可以最小化按需加载模块,无须加载多余功能。
轻量级:它是一个 Web 服务器,但不像传统的 Web 服务器有容器概念,它由两个核心 Jar 包组成,加载一个 Web 应用可以小于 10MB 内存。
Untertow 的性能
默认情况下 Spring Cloud 使用 Tomcat 作为内嵌 Servlet 容器,可启动一个 Tomcat 的 Spring Boot 程序与一个 Undertow 的 Spring Boot 程序,通过 VisualVM 工具进行比较,可看到 Undertow 性能优于 Tomcat。
SpringBoot2启用Undertow
第一步,排除Tomcat依赖。
第二部,添加Undertow依赖。
<dependency> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<!-- 排除Tomcat依赖 -->
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- 添加 Undertow依赖 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-undertow</artifactId>
</dependency>
缺少包导致的报错
如果你的undertow也会这样(一般不会):
APPLICATION FAILED TO START
Description:
An attempt was made to call the method io.undertow.servlet.api.DeploymentInfo.addServletContainerInitializer(Lio/undertow/servlet/api/ServletContainerInitializerInfo;)Lio/undertow/servlet/api/DeploymentInfo; but it does not exist. Its class, io.undertow.servlet.api.DeploymentInfo, is available from the following locations:
jar:file:/C:/Users/Administrator/.m2/repository/io/undertow/undertow-servlet/1.4.25.Final/undertow-servlet-1.4.25.Final.jar!/io/undertow/servlet/api/DeploymentInfo.class
It was loaded from the following location:
file:/C:/Users/Administrator/.m2/repository/io/undertow/undertow-servlet/1.4.25.Final/undertow-servlet-1.4.25.Final.jar
Action:
Correct the classpath of your application so that it contains a single, compatible version of io.undertow.servlet.api.DeploymentInfo
请加上以下maven依赖。因为我的SpringBoot2.0.7会这样。
<!-- https://mvnrepository.com/artifact/io.undertow/undertow-core -->
<dependency> <groupId>io.undertow</groupId>
<artifactId>undertow-core</artifactId>
<version>2.0.16.Final</version>
</dependency>
<!-- https://mvnrepository.com/artifact/io.undertow/undertow-servlet -->
<dependency>
<groupId>io.undertow</groupId>
<artifactId>undertow-servlet</artifactId>
<version>2.0.16.Final</version>
</dependency>
<!-- https://mvnrepository.com/artifact/io.undertow/undertow-websockets-jsr -->
<dependency>
<groupId>io.undertow</groupId>
<artifactId>undertow-websockets-jsr</artifactId>
<version>2.0.16.Final</version>
</dependency>
运行成功
Undertow参数配置
设置IO线程数, 它主要执行非阻塞的任务,它们会负责多个连接, 默认设置每个CPU核心一个线程
不要设置过大,如果过大,启动项目会报错:打开文件数过多
server.undertow.io-threads=16
阻塞任务线程池, 当执行类似servlet请求阻塞IO操作, undertow会从这个线程池中取得线程
它的值设置取决于系统线程执行任务的阻塞系数,默认值是IO线程数*8
server.undertow.worker-threads=256
以下的配置会影响buffer,这些buffer会用于服务器连接的IO操作,有点类似netty的池化内存管理
每块buffer的空间大小,越小的空间被利用越充分,不要设置太大,以免影响其他应用,合适即可
server.undertow.buffer-size=1024
每个区分配的buffer数量 , 所以pool的大小是buffer-size * buffers-per-region
server.undertow.buffers-per-region=1024
是否分配的直接内存(NIO直接分配的堆外内存)
server.undertow.direct-buffers=true
————————————————
版权声明:本文为CSDN博主「Moshow郑锴」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/moshowgame/article/details/84985765
以上是 SpringBoot2使用Undertow来提高应用性能(springbootstarterundertow) 的全部内容, 来源链接: utcz.com/z/517943.html