資源簡介
netty http服務器
代碼片段和文件信息
package?com.ron.netty.HttpServer;
import?io.netty.channel.ChannelInitializer;
import?io.netty.channel.ChannelPipeline;
import?io.netty.channel.socket.SocketChannel;
import?io.netty.handler.codec.http.HttpServerCodec;
public?class?HttpServerChannelInitializer?extends?ChannelInitializer{
????@Override
????protected?void?initChannel(SocketChannel?socketChannel)?throws?Exception?{
????????ChannelPipeline?pipeline?=?socketChannel.pipeline();
????????pipeline.addLast(“MyHttpServerCodec“new?HttpServerCodec());
????????pipeline.addLast(“MyTestHttpServerHandler“new?MyTestHttpServerHandler());
????}
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件????????635??2020-07-13?19:01??HttpServer\HttpServerChannelInitializer.java
?????文件???????1599??2020-07-13?19:11??HttpServer\MyTestHttpServerHandler.java
?????文件???????1632??2020-07-13?19:27??HttpServer\Server.java
?????目錄??????????0??2020-07-13?19:27??HttpServer
-----------?---------??----------?-----??----
?????????????????3866????????????????????4
- 上一篇:java學生信息管理系統(源碼+數據庫腳本)
- 下一篇:java 掃雷 小游戲源碼
評論
共有 條評論