netty4.0.23 初学的demo
例子共4个文件,用到的jar包有:
netty-all-4.0.23.Final.jar
log4j.jar (apache的)
commons-logging-1.1.1.jar(apache的)
文件 TcpServerHandler
- package test.netty;
- import org.apache.log4j.Logger;
- import io.netty.channel.ChannelHandlerContext;
- import io.netty.channel.SimpleChannelInboundHandler;
- public class TcpServerHandler extends SimpleChannelInboundHandler<Object> {
- private static final Logger logger = Logger.getLogger(TcpServerHandler.class);
- @Override
- protected void channelRead0(ChannelHandlerContext ctx, Object msg)
- throws Exception {
- logger.info("SERVER接收到消息:"+msg);
- ctx.channel().writeAndFlush("yes, server is accepted you ,nice !"+msg);
- }
- @Override
- public void exceptionCaught(ChannelHandlerContext ctx,
- Throwable cause) throws Exception {
- logger.warn("Unexpected exception from downstream.", cause);
- ctx.close();
- }
- }
文件 TcpServer
- package test.netty;
- import org.apache.log4j.Logger;
- import io.netty.bootstrap.ServerBootstrap;
- import io.netty.channel.ChannelInitializer;
- import io.netty.channel.ChannelPipeline;
- 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.LengthFieldBasedFrameDecoder;
- import io.netty.handler.codec.LengthFieldPrepender;
- import io.netty.handler.codec.string.StringDecoder;
- import io.netty.handler.codec.string.StringEncoder;
- import io.netty.util.CharsetUtil;
- public class TcpServer {
- private static final Logger logger = Logger.getLogger(TcpServer.class);
- private static final String IP = "127.0.0.1";
- private static final int PORT = 9999;
- /**用于分配处理业务线程的线程组个数 */
- protected static final int BIZGROUPSIZE = Runtime.getRuntime().availableProcessors()*2; //默认
- /** 业务出现线程大小*/
- protected static final int BIZTHREADSIZE = 4;
- /*
- * NioEventLoopGroup实际上就是个线程池,
- * NioEventLoopGroup在后台启动了n个NioEventLoop来处理Channel事件,
- * 每一个NioEventLoop负责处理m个Channel,
- * NioEventLoopGroup从NioEventLoop数组里挨个取出NioEventLoop来处理Channel
- */
- private static final EventLoopGroup bossGroup = new NioEventLoopGroup(BIZGROUPSIZE);
- private static final EventLoopGroup workerGroup = new NioEventLoopGroup(BIZTHREADSIZE);
- protected static void run() throws Exception {
- ServerBootstrap b = new ServerBootstrap();
- b.group(bossGroup, workerGroup);
- b.channel(NioServerSocketChannel.class);
- b.childHandler(new ChannelInitializer<SocketChannel>() {
- @Override
- public void initChannel(SocketChannel ch) throws Exception {
- ChannelPipeline pipeline = ch.pipeline();
- pipeline.addLast("frameDecoder", new LengthFieldBasedFrameDecoder(Integer.MAX_VALUE, 0, 4, 0, 4));
- pipeline.addLast("frameEncoder", new LengthFieldPrepender(4));
- pipeline.addLast("decoder", new StringDecoder(CharsetUtil.UTF_8));
- pipeline.addLast("encoder", new StringEncoder(CharsetUtil.UTF_8));
- pipeline.addLast(new TcpServerHandler());
- }
- });
- b.bind(IP, PORT).sync();
- logger.info("TCP服务器已启动");
- }
- protected static void shutdown() {
- workerGroup.shutdownGracefully();
- bossGroup.shutdownGracefully();
- }
- public static void main(String[] args) throws Exception {
- logger.info("开始启动TCP服务器...");
- TcpServer.run();
- // TcpServer.shutdown();
- }
- }
文件 TcpClientHandler
- package test.netty;
- import org.apache.log4j.Logger;
- import io.netty.channel.ChannelHandlerContext;
- import io.netty.channel.SimpleChannelInboundHandler;
- public class TcpClientHandler extends SimpleChannelInboundHandler<Object> {
- private static final Logger logger = Logger.getLogger(TcpClientHandler.class);
- @Override
- protected void channelRead0(ChannelHandlerContext ctx, Object msg)
- throws Exception {
- //messageReceived方法,名称很别扭,像是一个内部方法.
- logger.info("client接收到服务器返回的消息:"+msg);
- }
- }
文件 TcpClient
- package test.netty;
- import io.netty.bootstrap.Bootstrap;
- import io.netty.channel.Channel;
- import io.netty.channel.ChannelInitializer;
- import io.netty.channel.ChannelOption;
- import io.netty.channel.ChannelPipeline;
- import io.netty.channel.EventLoopGroup;
- import io.netty.channel.nio.NioEventLoopGroup;
- import io.netty.channel.socket.nio.NioSocketChannel;
- import io.netty.handler.codec.LengthFieldBasedFrameDecoder;
- import io.netty.handler.codec.LengthFieldPrepender;
- import io.netty.handler.codec.string.StringDecoder;
- import io.netty.handler.codec.string.StringEncoder;
- import io.netty.util.CharsetUtil;
- import org.apache.log4j.Logger;
- public class TcpClient {
- private static final Logger logger = Logger.getLogger(TcpClient.class);
- public static String HOST = "127.0.0.1";
- public static int PORT = 9999;
- public static Bootstrap bootstrap = getBootstrap();
- public static Channel channel = getChannel(HOST,PORT);
- /**
- * 初始化Bootstrap
- * @return
- */
- public static final Bootstrap getBootstrap(){
- EventLoopGroup group = new NioEventLoopGroup();
- Bootstrap b = new Bootstrap();
- b.group(group).channel(NioSocketChannel.class);
- b.handler(new ChannelInitializer<Channel>() {
- @Override
- protected void initChannel(Channel ch) throws Exception {
- ChannelPipeline pipeline = ch.pipeline();
- pipeline.addLast("frameDecoder", new LengthFieldBasedFrameDecoder(Integer.MAX_VALUE, 0, 4, 0, 4));
- pipeline.addLast("frameEncoder", new LengthFieldPrepender(4));
- pipeline.addLast("decoder", new StringDecoder(CharsetUtil.UTF_8));
- pipeline.addLast("encoder", new StringEncoder(CharsetUtil.UTF_8));
- pipeline.addLast("handler", new TcpClientHandler());
- }
- });
- b.option(ChannelOption.SO_KEEPALIVE, true);
- return b;
- }
- public static final Channel getChannel(String host,int port){
- Channel channel = null;
- try {
- channel = bootstrap.connect(host, port).sync().channel();
- } catch (Exception e) {
- logger.error(String.format("连接Server(IP[%s],PORT[%s])失败", host,port),e);
- return null;
- }
- return channel;
- }
- public static void sendMsg(String msg) throws Exception {
- if(channel!=null){
- channel.writeAndFlush(msg).sync();
- }else{
- logger.warn("消息发送失败,连接尚未建立!");
- }
- }
- public static void main(String[] args) throws Exception {
- try {
- long t0 = System.nanoTime();
- for (int i = 0; i < 100000; i++) {
- TcpClient.sendMsg(i+"你好1");
- }
- long t1 = System.nanoTime();
- System.out.println((t1-t0)/1000000.0);
- } catch (Exception e) {
- e.printStackTrace();
- }
- }
- }
相关推荐
netty最新发布jar包,网上很多资料都不能用,这个肯定可以用,我自己已经用了,有问题可以咨询我。
netty通信所需jar包,最新jar包。个人使用的nettyjar包。
这是一个基于高并发网络框架-Netty框架的demo项目,旨在展示Netty服务端与客户端的基础使用方式,并深入探讨了自定义编解码器以及心跳机制的实现。...无论是Netty初学者还是有一定基础的开发者,都能从中获益匪浅。
SpringBoot和Netty都是Java开发领域中的重要工具。SpringBoot以其快速、简洁的特性,极大地简化了Spring应用的初始...通过这个Demo,开发者能够更好地理解和掌握如何在SpringBoot项目中利用Netty实现高性能的网络服务。
这个“netty简单的demo很好理解”的例子,很可能是为了展示Netty的基本用法,帮助初学者理解其核心概念。我们将通过以下几个方面来深入探讨这个Demo: 1. **异步编程模型**: Netty 使用了Java NIO(非阻塞I/O)...
在本文中,我们将深入探讨Netty 5.0官方提供的示例(demo),这些示例是学习和理解Netty核心概念与功能的重要资源。 1. **Netty的异步模型** Netty基于Java NIO(非阻塞I/O)构建,其核心是事件驱动和异步处理。在...
作为一个学Java的,如果没有研究过Netty,那么你对Java语言的使用和理解仅仅停留在表面水平。 如果你想知道Nginx是怎么写出来的,如果你想知道Tomcat和Jetty是如何实现的,如果你也想实现一个简单的Redis服务器,那...
在本示例中,"简易版netty websocket通讯demo 聊天" 提供了一个基础的 WebSocket 协议通信的实现,用于构建聊天应用。WebSocket 是一种在客户端和服务器之间建立持久连接的协议,它允许双方进行全双工通信,即数据...
这个"Netty-all-4.0.23.Final.jar"文件是Netty框架的一个完整集合,包含了4.0.23.Final版本的所有组件和功能。而"netty-3.6.3.Final.jar"则是Netty的3.6.3.Final版本,这两个版本代表了Netty在不同时间点的稳定发布...
在“netty同步传输demo”中,我们关注的是如何在Netty中实现客户端的同步调用,以及如何利用ZooKeeper来管理分布式服务端。 首先,让我们深入理解Netty的同步和异步概念。Netty的核心特性之一是其基于NIO(非阻塞I/...
Netty-SocketIo Demo Chat 是一个基于Netty和Socket.IO的实时通信示例,用于实现一个WebChat聊天应用。这个项目结合了Java后端服务和客户端的实时交互,提供了高效、可靠的网络通信解决方案。 首先,Netty是一个高...
Netty-4.0.23 开发文档(英文原版开发手册)
Netty即时通讯项目Demo是一个基于Netty框架的简单即时通讯应用示例,旨在帮助初学者了解如何利用Netty实现一个基础的群聊功能。Netty是Java领域内一个高性能、异步事件驱动的网络应用程序框架,它极大地简化了网络...
读书笔记:netty权威指南demo
Netty 是一个高性能、异步事件驱动的网络应用程序框架,用于快速开发可维护的高性能协议服务器和客户端。这个"Netty4.0.26英文版API CHM"是Netty 4.0.26版本的官方API文档,以CHM(Microsoft编写的帮助文件格式)...
Netty 是一个高性能、异步事件驱动的网络应用程序框架,用于快速开发可维护的高性能协议服务器和客户端。这个实战教程和代码示例是为那些希望深入理解并运用 Netty 的开发者准备的。以下是对 Netty 的详细介绍以及...
这是更具netty的一个demo自己再修改一下 有问题可以联系我
在这个"NettyIO-Demo"压缩包中,包含了Netty官方的示例代码以及Netty 1.7.19版本的jar包及其所有依赖。这些依赖是运行和学习Netty必不可少的库,它们包括了处理I/O事件、编码解码、协议处理等功能的组件。 Netty ...
在"Netty及时通讯通讯DEMO"中,我们可以探讨以下几个关键知识点: 1. **Netty的基本架构**: Netty采用了一种名为“Reactor”模式的设计,该模式分为单线程和多线程两种,用于处理并发连接。其核心组件包括:...
这个"android+netty 的demo"可能是为了展示如何在Android应用中集成和使用Netty库。 Netty的核心理念是提供一个高度可定制和易用的网络编程模型,它简化了TCP、UDP以及HTTP等协议的实现。在Android上使用Netty,...