smart-http 1.0.15發布輕量級的國產HTTP服務器
smart-http是一款採用Java語言編寫的Http服務器,有別於業界知名的Web容器:Tomcat、Undertow,smart-http並不支持Servlet規範,但對於http服務器所需的各項能力,它都具備。smart-http天生就是異步非阻塞的I/O模型,因為其通信內核採用了 smart-socket。所以無論是性能還是穩定性,都是非常出色的。
更新內容
- 優化Http Request的流操作
- 修復長連接狀態下的個別字段未重置問題。
- 支持Http1.0協議的長連接。
- 增加畸形報文攻擊防範策略。
- WebSocketResponse 新增flush接口。
- 升級smart-socket 至1.4.12。
快速體驗
在您的Maven工程中引入smart-http依賴。
<dependency>
<groupId>org.smartboot.http</groupId>
<artifactId>smart-http-server</artifactId>
<version>1.0.15</version></dependency>
拷貝以下代碼並啟動。
public class SimpleSmartHttp { public static void main(String[] args) {
HttpBootstrap bootstrap = new HttpBootstrap(); //http消息
bootstrap.pipeline().next(new HttpHandle() { public void doHandle(HttpRequest request, HttpResponse response) throws IOException {
response.write("hello world".getBytes());
}
}); //websocket消息
bootstrap.wsPipeline().next(new WebSocketHandle() { public void doHandle(WebSocketRequest request, WebSocketResponse response) throws IOException {
response.sendTextMessage("hello world");
}
});
bootstrap.setPort(8080).start();
}
}