皇上,还记得我吗?我就是1999年那个Linux伊甸园啊-----24小时滚动更新开源资讯,全年无休!

Undertow 2.0.3 发布,高性能的嵌入式 Web 服务器

Undertow 2.0.3 发布,高性能的嵌入式 Web 服务器

Undertow 2.0.3 已发布,未发现更新内容,GitHub 上的提交信息只是显示下个版本是 2.0.4……

不过官方博客放出了 2.0 版本的更新说明,该版本包含对 Servlet 4.0 的支持,这使得 Undertow 可在 Servlet 应用中更方便使用 HTTP/2 特性。

此外,Undertow 2.0 保持向后兼容 Undertow 1.4,但不再支持 JDK7。

Maven

<dependency>
    <groupId>io.undertow</groupId>
    <artifactId>undertow-core</artifactId>
    <version>2.0.1.Final</version>
</dependency>
<dependency>
    <groupId>io.undertow</groupId>
    <artifactId>undertow-servlet</artifactId>
    <version>2.0.1.Final</version>
</dependency>
<dependency>
    <groupId>io.undertow</groupId>
    <artifactId>undertow-websockets-jsr</artifactId>
    <version>2.0.1.Final</version>
</dependency>

源码下载:https://github.com/undertow-io/undertow/releases/tag/2.0.3.Final

转自 https://www.oschina.net/news/94399/undertow-2-0-3-released