smart-http 是可编程的 Http 应用微内核。封装了标准的 Http、Websocket 协议,满足用户对于 Server 端和 Client 端的开发需求。
这是目前市面上为数不多的做到严格准守 RFC2616 规范,又同时兼顾卓越性能的 Http 服务器,在三方评测 TechEmpower (opens new window)结果中有着极为亮眼的表现。
你可以将 smart-http 开发的程序部署在任何 Java 8 及以上版本的设备上。 经过我们的不懈优化,已经最大限度的降低程序运行期间对于内存和 GC 的开销。
smart-http,是一款体现了作为开源人的工匠精神的作品。
# 当前最新版本
# Server 版
<dependency>
<groupId>org.smartboot.http</groupId>
<artifactId>smart-http-server</artifactId>
<version>1.3.5</version>
</dependency>
1
2
3
4
5
2
3
4
5
# Client 版
<dependency>
<groupId>org.smartboot.http</groupId>
<artifactId>smart-http-client</artifactId>
<version>1.3.5</version>
</dependency>
1
2
3
4
5
2
3
4
5