netty是基于JDK NIO的,为什么不直接使用java nio呢;
屏蔽了JDk的实现细节,修复了很多java nio已知的bug
java共支持3种网络编程模型/io模式:BIO,NIO(同步非阻塞),AIO(异步非阻塞)
netty是基于NIO的
Selector其实就是netty中的bossGroup,client就是workGroup
1. 通过事件来决定选择处理哪个chanal业务
2. Buffer本身是一块内存,实际上是一个数组,可指定大小,数据读写都由buffer实现
3. Nio中我们是面向块(block)和buffer编程的
Netty 是一个高性能网络通信框架,同时它也是比较底层的框架,想要 Netty 支持 Http(超文本传输协议),必须要给它提供相应的编解码器。
HTTP是短链接的,就算HTTP1.1有了keepalive机制能在指定时间内保持连接
而WebSocket是一种全双工协议,基于HTTP,首先和普通http一样,不过请求头里面会携带一些数据要求进行协议升级为WebSocket,如果服务端也支持WebSocket的话,就会把HTTP连接升级为WebSocket连接,WebSocket连接一旦建立好之后客户端和服务端就可以进行全双工的通讯,也就是说,服务端和客户端就是等价的,服务端也可以主动发送数据给客户端(请求客户端),这是HTTP无法做到的
HTTP要求必须传递Head,在数据量小但是十分频繁的请求来说是非常浪费的,因为head中的很多数据不会使用到,但是必选要传。而WebSocket允许,只传数据
不过WebSocket为了不让失效连接一直保持下去,浪费资源,需要客户端定时向服务器端发送心跳包,服务端接收到心跳包之后会返回一个心跳包,要是服务端一段时间后没有收到心跳包,就马上断开连接,要是客户端发了心跳包,但是没有返回,则认为服务端已经和自己断开连接了,自己会把这自己这边个连接也断掉,重新去请求新的连接
WebSocket就是全双工的基于长连接的HTTP
而且像客户端需要异步得到服务器数据的情况时,由于服务器无法处理数据完成后主动通知,需要客户端每隔一段时间请求一次数据,检查数据处理好没有
netty实现http不需要使用像tomcat这种web应用服务器,因为他本身就具有应用服务器全部功能,像解析协议等,不过不能做到支持selvlet
webSocket其实是html5规范中的一部分
netty实现socket编程入门Demo:
客户端:
public static void main(String[] args) { String host = "127.0.0.1"; int port = 8886; EventLoopGroup group = new NioEventLoopGroup(); try { Bootstrap b = new Bootstrap(); b.group(group) .channel(NioSocketChannel.class) .handler(new MyClientInitializer()); // 启动客户端. ChannelFuture f = b.connect(host, port).sync(); f.channel().closeFuture().sync(); } catch (InterruptedException e) { e.printStackTrace(); } finally { group.shutdownGracefully(); } } public class MyClientInitializer extends ChannelInitializer<SocketChannel> { @Override protected void initChannel(SocketChannel ch) throws Exception { ChannelPipeline pipeline = ch.pipeline(); pipeline.addLast(new LengthFieldBasedFrameDecoder(Integer.MAX_VALUE, 0, 4, 0, 4)); pipeline.addLast(new LengthFieldPrepender(4)); pipeline.addLast(new StringDecoder(CharsetUtil.UTF_8)); pipeline.addLast(new StringEncoder(CharsetUtil.UTF_8)); pipeline.addLast(new MyClientHandler()); } } public class MyClientHandler extends SimpleChannelInboundHandler<String> { @Override protected void channelRead0(ChannelHandlerContext ctx, String msg) throws Exception { System.out.println(ctx.channel().remoteAddress()); System.out.println("msg:"+msg); ctx.writeAndFlush("from client:" + LocalDateTime.now()); } @Override public void channelActive(ChannelHandlerContext ctx) throws Exception { ctx.writeAndFlush("from client:" + "我主动发第一条数据"); } @Override public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception { cause.printStackTrace(); ctx.close(); } }
服务器端:
public class MyServer { int port ; public MyServer(int port){ this.port = port; } public void start() throws Exception{ EventLoopGroup boss = new NioEventLoopGroup(); // selector EventLoopGroup work = new NioEventLoopGroup(); // channel try { ServerBootstrap bootstrap = new ServerBootstrap(); bootstrap.group(boss,work) .handler(new LoggingHandler(LogLevel.DEBUG)) .channel(NioServerSocketChannel.class) .childHandler(new MyServerInitializer()); ChannelFuture f = bootstrap.bind(new InetSocketAddress(port)).sync(); System.out.println(" server start up on port : " + port); f.channel().closeFuture().sync(); } finally { boss.shutdownGracefully(); work.shutdownGracefully(); } } public static void main(String[] args) throws Exception{ MyServer server = new MyServer(8899);// 8081为启动端口 server.start(); } } public class MyServerInitializer extends ChannelInitializer<SocketChannel> { // 客户端一旦和服务端连接,这个方法就会被调用 @Override protected void initChannel(SocketChannel channel) throws Exception { ChannelPipeline pipeline = channel.pipeline(); pipeline.addLast(new LengthFieldBasedFrameDecoder(Integer.MAX_VALUE, 0, 4, 0, 4)); pipeline.addLast(new LengthFieldPrepender(4)); pipeline.addLast(new StringDecoder(CharsetUtil.UTF_8)); pipeline.addLast(new StringEncoder(CharsetUtil.UTF_8)); pipeline.addLast(new MyRequestHandler()); } } public class MyRequestHandler extends SimpleChannelInboundHandler<String> { @Override protected void channelRead0(ChannelHandlerContext ctx, String req) throws Exception { System.out.println(ctx.channel().remoteAddress()); System.out.println("req msg:"+req); ctx.writeAndFlush("from server:" + LocalDateTime.now()); } }