Netty4.0学习笔记系列之三:构建简单的http服务(转)
http://blog.csdn.net/u013252773/article/details/21254257
本文主要介绍如何通过Netty构建一个简单的http服务。
想要实现的目的是:
1、Client向Server发送http请求。
2、Server端对http请求进行解析。
3、Server端向client发送http响应。
4、Client对http响应进行解析。
在该实例中,会涉及到http请求的编码、解码,http响应的编码、解码,幸运的是,Netty已经为我们提供了这些工具,整个实例的逻辑图如下所示:
其中红色框中的4个类是Netty提供的,它们其实也是一种Handler,其中Encoder继承自ChannelOutboundHandler,Decoder继承自ChannelInboundHandler,它们的作用是:
1、HttpRequestEncoder:对httpRequest进行编码。
2、HttpRequestDecoder:把流数据解析为httpRequest。
3、HttpResponsetEncoder:对httpResponset进行编码。
4、HttpResponseEncoder:把流数据解析为httpResponse。
该实例涉及到的类有5个:HttpServer HttpServerInboundHandler HttpClient HttpClientInboundHandler ByteBufToBytes
1、HttpServer 启动http服务器
- package com.guowl.testhttpprotocol;
- import io.netty.bootstrap.ServerBootstrap;
- import io.netty.channel.ChannelFuture;
- import io.netty.channel.ChannelInitializer;
- import io.netty.channel.ChannelOption;
- import io.netty.channel.EventLoopGroup;
- import io.netty.channel.nio.NioEventLoopGroup;
- import io.netty.channel.socket.SocketChannel;
- import io.netty.channel.socket.nio.NioServerSocketChannel;
- import io.netty.handler.codec.http.HttpRequestDecoder;
- import io.netty.handler.codec.http.HttpResponseEncoder;
- public class HttpServer {
- public void start(int port) throws Exception {
- EventLoopGroup bossGroup = new NioEventLoopGroup(); // (1)
- EventLoopGroup workerGroup = new NioEventLoopGroup();
- try {
- ServerBootstrap b = new ServerBootstrap(); // (2)
- b.group(bossGroup, workerGroup).channel(NioServerSocketChannel.class) // (3)
- .childHandler(new ChannelInitializer<SocketChannel>() { // (4)
- @Override
- public void initChannel(SocketChannel ch) throws Exception {
- // server端发送的是httpResponse,所以要使用HttpResponseEncoder进行编码
- ch.pipeline().addLast(new HttpResponseEncoder());
- // server端接收到的是httpRequest,所以要使用HttpRequestDecoder进行解码
- ch.pipeline().addLast(new HttpRequestDecoder());
- ch.pipeline().addLast(new HttpServerInboundHandler());
- }
- }).option(ChannelOption.SO_BACKLOG, 128) // (5)
- .childOption(ChannelOption.SO_KEEPALIVE, true); // (6)
- ChannelFuture f = b.bind(port).sync(); // (7)
- f.channel().closeFuture().sync();
- } finally {
- workerGroup.shutdownGracefully();
- bossGroup.shutdownGracefully();
- }
- }
- public static void main(String[] args) throws Exception {
- HttpServer server = new HttpServer();
- server.start(8000);
- }
- }
2、HttpServerInboundHandler 解析客户端的请求,并进行响应
- package com.guowl.testhttpprotocol;
- import static io.netty.handler.codec.http.HttpHeaders.Names.CONNECTION;
- import static io.netty.handler.codec.http.HttpHeaders.Names.CONTENT_LENGTH;
- import static io.netty.handler.codec.http.HttpHeaders.Names.CONTENT_TYPE;
- import static io.netty.handler.codec.http.HttpResponseStatus.OK;
- import static io.netty.handler.codec.http.HttpVersion.HTTP_1_1;
- import io.netty.buffer.ByteBuf;
- import io.netty.buffer.Unpooled;
- import io.netty.channel.ChannelHandlerContext;
- import io.netty.channel.ChannelInboundHandlerAdapter;
- import io.netty.handler.codec.http.DefaultFullHttpResponse;
- import io.netty.handler.codec.http.FullHttpResponse;
- import io.netty.handler.codec.http.HttpContent;
- import io.netty.handler.codec.http.HttpHeaders;
- import io.netty.handler.codec.http.HttpHeaders.Values;
- import io.netty.handler.codec.http.HttpRequest;
- import org.slf4j.Logger;
- import org.slf4j.LoggerFactory;
- import com.guowl.utils.ByteBufToBytes;
- public class HttpServerInboundHandler extends ChannelInboundHandlerAdapter {
- private static Logger logger = LoggerFactory.getLogger(HttpServerInboundHandler.class);
- private ByteBufToBytes reader;
- @Override
- public void channelRead(ChannelHandlerContext ctx, Object msg) throws Exception {
- if (msg instanceof HttpRequest) {
- HttpRequest request = (HttpRequest) msg;
- System.out.println("messageType:" + request.headers().get("messageType"));
- System.out.println("businessType:" + request.headers().get("businessType"));
- if (HttpHeaders.isContentLengthSet(request)) {
- reader = new ByteBufToBytes((int) HttpHeaders.getContentLength(request));
- }
- }
- if (msg instanceof HttpContent) {
- HttpContent httpContent = (HttpContent) msg;
- ByteBuf content = httpContent.content();
- reader.reading(content);
- content.release();
- if (reader.isEnd()) {
- String resultStr = new String(reader.readFull());
- System.out.println("Client said:" + resultStr);
- FullHttpResponse response = new DefaultFullHttpResponse(HTTP_1_1, OK, Unpooled.wrappedBuffer("I am ok"
- .getBytes()));
- response.headers().set(CONTENT_TYPE, "text/plain");
- response.headers().set(CONTENT_LENGTH, response.content().readableBytes());
- response.headers().set(CONNECTION, Values.KEEP_ALIVE);
- ctx.write(response);
- ctx.flush();
- }
- }
- }
- @Override
- public void channelReadComplete(ChannelHandlerContext ctx) throws Exception {
- logger.info("HttpServerInboundHandler.channelReadComplete");
- ctx.flush();
- }
- }
3、HttpClient 向服务器发送请求
- package com.guowl.testhttpprotocol;
- import io.netty.bootstrap.Bootstrap;
- import io.netty.buffer.Unpooled;
- import io.netty.channel.ChannelFuture;
- import io.netty.channel.ChannelInitializer;
- import io.netty.channel.ChannelOption;
- import io.netty.channel.EventLoopGroup;
- import io.netty.channel.nio.NioEventLoopGroup;
- import io.netty.channel.socket.SocketChannel;
- import io.netty.channel.socket.nio.NioSocketChannel;
- import io.netty.handler.codec.http.DefaultFullHttpRequest;
- import io.netty.handler.codec.http.HttpHeaders;
- import io.netty.handler.codec.http.HttpMethod;
- import io.netty.handler.codec.http.HttpRequestEncoder;
- import io.netty.handler.codec.http.HttpResponseDecoder;
- import io.netty.handler.codec.http.HttpVersion;
- import java.net.URI;
- public class HttpClient {
- public void connect(String host, int port) throws Exception {
- EventLoopGroup workerGroup = new NioEventLoopGroup();
- try {
- Bootstrap b = new Bootstrap(); // (1)
- b.group(workerGroup); // (2)
- b.channel(NioSocketChannel.class); // (3)
- b.option(ChannelOption.SO_KEEPALIVE, true); // (4)
- b.handler(new ChannelInitializer<SocketChannel>() {
- @Override
- public void initChannel(SocketChannel ch) throws Exception {
- // 客户端接收到的是httpResponse响应,所以要使用HttpResponseDecoder进行解码
- ch.pipeline().addLast(new HttpResponseDecoder());
- // 客户端发送的是httprequest,所以要使用HttpRequestEncoder进行编码
- ch.pipeline().addLast(new HttpRequestEncoder());
- ch.pipeline().addLast(new HttpClientInboundHandler());
- }
- });
- // Start the client.
- ChannelFuture f = b.connect(host, port).sync(); // (5)
- URI uri = new URI("http://127.0.0.1:8000");
- String msg = "Are you ok?";
- DefaultFullHttpRequest request = new DefaultFullHttpRequest(HttpVersion.HTTP_1_1, HttpMethod.POST,
- uri.toASCIIString(), Unpooled.wrappedBuffer(msg.getBytes()));
- // 构建http请求
- request.headers().set(HttpHeaders.Names.HOST, host);
- request.headers().set(HttpHeaders.Names.CONNECTION, HttpHeaders.Values.KEEP_ALIVE);
- request.headers().set(HttpHeaders.Names.CONTENT_LENGTH, request.content().readableBytes());
- request.headers().set("messageType", "normal");
- request.headers().set("businessType", "testServerState");
- // 发送http请求
- f.channel().write(request);
- f.channel().flush();
- f.channel().closeFuture().sync();
- } finally {
- workerGroup.shutdownGracefully();
- }
- }
- public static void main(String[] args) throws Exception {
- HttpClient client = new HttpClient();
- client.connect("127.0.0.1", 8000);
- }
- }
4、HttpClientInboundHandler 对服务器的响应进行读取
- package com.guowl.testhttpprotocol;
- import io.netty.buffer.ByteBuf;
- import io.netty.channel.ChannelHandlerContext;
- import io.netty.channel.ChannelInboundHandlerAdapter;
- import io.netty.handler.codec.http.HttpContent;
- import io.netty.handler.codec.http.HttpHeaders;
- import io.netty.handler.codec.http.HttpResponse;
- import com.guowl.utils.ByteBufToBytes;
- public class HttpClientInboundHandler extends ChannelInboundHandlerAdapter {
- private ByteBufToBytes reader;
- @Override
- public void channelRead(ChannelHandlerContext ctx, Object msg) throws Exception {
- if (msg instanceof HttpResponse) {
- HttpResponse response = (HttpResponse) msg;
- System.out.println("CONTENT_TYPE:" + response.headers().get(HttpHeaders.Names.CONTENT_TYPE));
- if (HttpHeaders.isContentLengthSet(response)) {
- reader = new ByteBufToBytes((int) HttpHeaders.getContentLength(response));
- }
- }
- if (msg instanceof HttpContent) {
- HttpContent httpContent = (HttpContent) msg;
- ByteBuf content = httpContent.content();
- reader.reading(content);
- content.release();
- if (reader.isEnd()) {
- String resultStr = new String(reader.readFull());
- System.out.println("Server said:" + resultStr);
- ctx.close();
- }
- }
- }
- }
5、ByteBufToBytes 读取NIO的工具类,可以一次性把ByteBuf的数据读取出来,也可以把多次ByteBuf中的数据统一读取出来。
- package com.guowl.utils;
- import io.netty.buffer.ByteBuf;
- import io.netty.buffer.Unpooled;
- public class ByteBufToBytes {
- private ByteBuf temp;
- private boolean end = true;
- public ByteBufToBytes(int length) {
- temp = Unpooled.buffer(length);
- }
- public void reading(ByteBuf datas) {
- datas.readBytes(temp, datas.readableBytes());
- if (this.temp.writableBytes() != 0) {
- end = false;
- } else {
- end = true;
- }
- }
- public boolean isEnd() {
- return end;
- }
- public byte[] readFull() {
- if (end) {
- byte[] contentByte = new byte[this.temp.readableBytes()];
- this.temp.readBytes(contentByte);
- this.temp.release();
- return contentByte;
- } else {
- return null;
- }
- }
- public byte[] read(ByteBuf datas) {
- byte[] bytes = new byte[datas.readableBytes()];
- datas.readBytes(bytes);
- return bytes;
- }
- }
注意事项:
1、可以通过在Netty的Chanel中发送HttpRequest对象,完成发送http请求的要求,同时可以对HttpHeader进行设置。
2、可以通过HttpResponse发送http响应,同时可以对HttpHeader进行设置。
3、上面涉及到的http对象都是Netty自己封装的,不是标准的。
Netty4.0学习笔记系列之三:构建简单的http服务(转)的更多相关文章
- Netty4.0学习笔记系列之一:Server与Client的通讯
http://blog.csdn.net/u013252773/article/details/21046697 本文是学习Netty的第一篇文章,主要对Netty的Server和Client间的通讯 ...
- Netty4.0学习笔记系列之二:Handler的执行顺序(转)
http://blog.csdn.net/u013252773/article/details/21195593 Handler在netty中,无疑占据着非常重要的地位.Handler与Servlet ...
- Netty4.0学习笔记系列之四:混合使用coder和handler
Handler如何使用在前面的例子中已经有了示范,那么同样是扩展自ChannelHandler的Encoder和Decoder,与Handler混合后又是如何使用的?本文将通过一个实际的小例子来展示它 ...
- Netty4.0学习笔记系列之二:Handler的执行顺序
Handler在netty中,无疑占据着非常重要的地位.Handler与Servlet中的filter很像,通过Handler可以完成通讯报文的解码编码.拦截指定的报文.统一对日志错误进行处理.统一对 ...
- WebService学习笔记系列(二)
soap(简单对象访问协议),它是在http基础之上传递xml格式数据的协议.soap协议分为两个版本,soap1.1和soap1.2. 在学习webservice时我们有一个必备工具叫做tcpmon ...
- .NET CORE学习笔记系列(2)——依赖注入【1】控制反转IOC
原文:https://www.cnblogs.com/artech/p/net-core-di-01.html 一.流程控制的反转 IoC的全名Inverse of Control,翻译成中文就是“控 ...
- DirectX 总结和DirectX 9.0 学习笔记
转自:http://www.cnblogs.com/graphics/archive/2009/11/25/1583682.html DirectX 总结 DDS DirectXDraw Surfac ...
- 步步为营 SharePoint 开发学习笔记系列总结
转:http://www.cnblogs.com/springyangwc/archive/2011/08/03/2126763.html 概要 为时20多天的sharepoint开发学习笔记系列终于 ...
- .NET CORE学习笔记系列(2)——依赖注入[6]: .NET Core DI框架[编程体验]
原文https://www.cnblogs.com/artech/p/net-core-di-06.html 毫不夸张地说,整个ASP.NET Core框架是建立在一个依赖注入框架之上的,它在应用启动 ...
随机推荐
- Enable Access Logs in JBoss 7 and tomcat--转
JBoss 7 is slightly different than earlier version JBoss 5 or 6. The procedure to enable access logs ...
- jQuery ajax 传递数组到struts2
使用jQuery的$.ajax()方法进行异步交互时,如果传递的数据有数组(例如传输checkbox数据),Action中经常会接受不到数据. 此时应该注意一下data中数组的写法,例如: //组合成 ...
- IDL计算儒略日
遥感数据还有一些文章中使用数据的时候,经常使用儒略日(Julian day),即计算该天是一年中的第几天.正好有时间,就用IDL写了段儿小代码,方便使用. ;+ ; :Author: caoz ...
- asp.net手动填充TreeView生成树
最近在做项目发现需要用到树的地方,页面的前台任然是使用一个asp.net的控件TreeView来显示树的结构,当然也可以自己在前台写一个树来展示,这在后期跟局功能的不同很大可能会要用到异步的知识,废话 ...
- C#开发基于Http的LaTeX数学公式转换器
本文将讲解如何通过codecogs.com和Google.com提供的API接口来将LaTeX数学函数表达式转化为图片形式.具体思路如下: (1)通过TextBox获取用户输入的LaTeX数学表达式, ...
- Deep Learning 学习随记(七)Convolution and Pooling --卷积和池化
图像大小与参数个数: 前面几章都是针对小图像块处理的,这一章则是针对大图像进行处理的.两者在这的区别还是很明显的,小图像(如8*8,MINIST的28*28)可以采用全连接的方式(即输入层和隐含层直接 ...
- 强大的Core Image框架,各种滤镜处理图像
首先介绍一下Core Image,他是一个很强大的图像处理框架,他可以让你简单的应用各种滤镜来处理图像,比如说色相,饱和度,亮度等等...他是运用GPU(CPU)实时地处理图像数据和视频的帧.而且Co ...
- iOS中ARC内部原理
ARC会自动插入retain和release语句.ARC编译器有两部分,分别是前端编译器和优化器. 1. 前端编译器 前端编译器会为“拥有的”每一个对象插入相应的release语句.如果对象的所有权修 ...
- iOS 事件处理机制与图像渲染过程(转)
iOS 事件处理机制与图像渲染过程 iOS RunLoop都干了什么 iOS 为什么必须在主线程中操作UI 事件响应 CALayer CADisplayLink 和 NSTimer iOS 渲染过程 ...
- POJ 1830.开关问题(高斯消元)
题目链接 Solutin: 将每个开关使用的情况当成未知数,如果开关i能影响到开关j,那么系数矩阵A[j][i]的系数为1. 每个开关增广矩阵的值是开关k的初状态异或开关k的目标状态,这个应该很容易想 ...