使用JAVA操作netty框架

之前使用过MINA框架,感觉效率非常好,使用长连接可以支持10万次以上的并发。 
今天尝试使用了Netty框架,感觉使用上也非常方便,具体效率问题,在接下来的博客会详细解读: 

NioServerSocketChannelFactory创建服务端的ServerSocketChannel,采用多线程执行非阻塞IO,和Mina的设计 

模式一样,都采用了Reactor模式。其中bossExecutor、workerExecutor是两个线程池,bossExecutor用来接收客户端连接,workerExecutor用来执行非阻塞的IO操作,主要是read,write。 





Java代码   收藏代码
  1. package netty;  
  2.   
  3. import org.jboss.netty.bootstrap.ServerBootstrap;  
  4. import org.jboss.netty.channel.ChannelFactory;  
  5. import org.jboss.netty.channel.ChannelPipeline;  
  6. import org.jboss.netty.channel.ChannelPipelineFactory;  
  7. import org.jboss.netty.channel.Channels;  
  8. import org.jboss.netty.channel.socket.nio.NioServerSocketChannelFactory;  
  9. import org.jboss.netty.handler.codec.string.StringDecoder;  
  10. import org.jboss.netty.handler.codec.string.StringEncoder;  
  11.   
  12. import java.net.InetSocketAddress;  
  13. import java.util.concurrent.Executors;  
  14.   
  15. /** 
  16.  * Created by IntelliJ IDEA. 
  17.  * User: flychao88 
  18.  * Date: 12-6-6 
  19.  * Time: 上午10:14 
  20.  * To change this template use File | Settings | File Templates. 
  21.  */  
  22. public class DiscardServer {  
  23.     public static void main(String[] args) throws Exception {  
  24.         ChannelFactory factory = new NioServerSocketChannelFactory(  
  25.             Executors.newCachedThreadPool(),  
  26.             Executors.newCachedThreadPool());  
  27.         ServerBootstrap bootstrap = new ServerBootstrap (factory);  
  28.         bootstrap.setPipelineFactory(new ChannelPipelineFactory() {  
  29.             public ChannelPipeline getPipeline() {  
  30.                  ChannelPipeline pipeline = Channels.pipeline();  
  31.                 pipeline.addLast("encode",new StringEncoder());  
  32.                 pipeline.addLast("decode",new StringDecoder());  
  33.                 pipeline.addLast("handler",new DiscardServerHandler());  
  34.                 return pipeline;  
  35.             }  
  36.         });  
  37.         bootstrap.setOption("child.tcpNoDelay"true);  
  38.         bootstrap.setOption("child.keepAlive"true);  
  39.         bootstrap.bind(new InetSocketAddress(8080));  
  40.     }  
  41. }  


Java代码   收藏代码
  1. package netty;  
  2.   
  3. import org.jboss.netty.buffer.ChannelBuffer;  
  4. import org.jboss.netty.buffer.ChannelBuffers;  
  5. import org.jboss.netty.channel.*;  
  6.   
  7. /** 
  8.  * Created by IntelliJ IDEA. 
  9.  * User: flychao88 
  10.  * Date: 12-6-6 
  11.  * Time: 上午10:10 
  12.  * To change this template use File | Settings | File Templates. 
  13.  */  
  14. public class DiscardServerHandler extends SimpleChannelUpstreamHandler  {  
  15.     @Override  
  16.     public void messageReceived(ChannelHandlerContext ctx, MessageEvent e) {  
  17.        System.out.println("服务器接收1:"+e.getMessage());  
  18.     }  
  19.       
  20.     @Override  
  21.     public void exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e) {  
  22.         e.getCause().printStackTrace();  
  23.         Channel ch = e.getChannel();  
  24.         ch.close();  
  25.     }  
  26. }  



Java代码   收藏代码
  1. package netty;  
  2.   
  3. import org.jboss.netty.bootstrap.ClientBootstrap;  
  4. import org.jboss.netty.channel.ChannelFactory;  
  5. import org.jboss.netty.channel.ChannelPipeline;  
  6. import org.jboss.netty.channel.ChannelPipelineFactory;  
  7. import org.jboss.netty.channel.Channels;  
  8. import org.jboss.netty.channel.socket.nio.NioClientSocketChannelFactory;  
  9. import org.jboss.netty.handler.codec.string.StringDecoder;  
  10. import org.jboss.netty.handler.codec.string.StringEncoder;  
  11.   
  12. import java.net.InetSocketAddress;  
  13. import java.util.concurrent.Executors;  
  14.   
  15. /** 
  16.  * Created by IntelliJ IDEA. 
  17.  * User: flychao88 
  18.  * Date: 12-6-6 
  19.  * Time: 上午10:21 
  20.  * To change this template use File | Settings | File Templates. 
  21.  */  
  22. public class TimeClient {  
  23.     public static void main(String[] args) throws Exception {  
  24.           
  25.         ChannelFactory factory = new NioClientSocketChannelFactory(  
  26.             Executors.newCachedThreadPool(),  
  27.             Executors.newCachedThreadPool());  
  28.         ClientBootstrap bootstrap = new ClientBootstrap(factory);  
  29.         bootstrap.setPipelineFactory(new ChannelPipelineFactory() {  
  30.             public ChannelPipeline getPipeline() {  
  31.                 ChannelPipeline pipeline = Channels.pipeline();  
  32.                 pipeline.addLast("encode",new StringEncoder());  
  33.                 pipeline.addLast("decode",new StringDecoder());  
  34.                 pipeline.addLast("handler",new TimeClientHandler());  
  35.                 return pipeline;  
  36.             }  
  37.         });  
  38.         bootstrap.setOption("tcpNoDelay" , true);  
  39.         bootstrap.setOption("keepAlive"true);  
  40.         bootstrap.connect (new InetSocketAddress("127.0.0.1"8080));  
  41.     }  
  42. }  



Java代码   收藏代码
  1. package netty;  
  2.   
  3. /** 
  4.  * Created by IntelliJ IDEA. 
  5.  * User: flychao88 
  6.  * Date: 12-6-6 
  7.  * Time: 上午10:22 
  8.  * To change this template use File | Settings | File Templates. 
  9.  */  
  10. import org.jboss.netty.buffer.ChannelBuffer;  
  11. import org.jboss.netty.buffer.ChannelBuffers;  
  12. import org.jboss.netty.channel.*;  
  13.   
  14. import java.util.Date;  
  15.   
  16.   
  17. public class TimeClientHandler extends SimpleChannelUpstreamHandler  {  
  18.     @Override  
  19.     public void channelConnected(ChannelHandlerContext ctx, ChannelStateEvent e) {  
  20.         e.getChannel().write("abcd");  
  21.     }  
  22.   
  23.     @Override  
  24.     public void messageReceived(ChannelHandlerContext ctx, MessageEvent e) {  
  25.         e.getChannel().close();  
  26.     }  
  27.       
  28.     @Override  
  29.     public void exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e) {  
  30.         e.getCause().printStackTrace();  
  31.         e.getChannel().close();  
  32.     }  
  33. }  
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
以下是一个简单的 Java RPC Netty 框架代码实现: ```java // 定义 RPC 请求实体类 public class RpcRequest implements Serializable { private String className; private String methodName; private Object[] parameters; // 省略 getter 和 setter 方法 } // 定义 RPC 响应实体类 public class RpcResponse implements Serializable { private Object result; private String error; // 省略 getter 和 setter 方法 } // 定义 RPC 服务接口 public interface RpcService { // 定义服务方法 public int add(int a, int b); } // 实现 RPC 服务接口 public class RpcServiceImpl implements RpcService { @Override public int add(int a, int b) { return a + b; } } // 定义 RPC 服务器端 public class RpcServer { private static final Logger LOGGER = LoggerFactory.getLogger(RpcServer.class); private String host; private int port; public RpcServer(String host, int port) { this.host = host; this.port = port; } public void start() throws InterruptedException { // 创建线程池 EventLoopGroup bossGroup = new NioEventLoopGroup(); EventLoopGroup workerGroup = new NioEventLoopGroup(); try { // 配置服务器启动类 ServerBootstrap b = new ServerBootstrap(); b.group(bossGroup, workerGroup) .channel(NioServerSocketChannel.class) .childHandler(new ChannelInitializer<SocketChannel>() { @Override public void initChannel(SocketChannel ch) throws Exception { // 添加解码器和编码器 ch.pipeline().addLast(new ObjectDecoder(ClassResolvers.cacheDisabled(null))); ch.pipeline().addLast(new ObjectEncoder()); // 添加业务处理类 ch.pipeline().addLast(new RpcServerHandler()); } }) .option(ChannelOption.SO_BACKLOG, 128) .childOption(ChannelOption.SO_KEEPALIVE, true); // 启动服务器 ChannelFuture f = b.bind(host, port).sync(); LOGGER.info("Server started on {}:{}", host, port); // 等待直到服务器 socket 关闭 f.channel().closeFuture().sync(); } finally { workerGroup.shutdownGracefully(); bossGroup.shutdownGracefully(); } } // 定义业务处理类 private class RpcServerHandler extends ChannelInboundHandlerAdapter { @Override public void channelRead(ChannelHandlerContext ctx, Object msg) throws Exception { RpcRequest request = (RpcRequest) msg; LOGGER.info("Received request: {}", request); // 调用服务 RpcResponse response = new RpcResponse(); try { Class<?> clazz = Class.forName(request.getClassName()); Method method = clazz.getMethod(request.getMethodName(), request.getParameters().getClass()); Object result = method.invoke(clazz.newInstance(), request.getParameters()); LOGGER.info("Result: {}", result); response.setResult(result); } catch (Exception e) { LOGGER.error("Error occurred while invoking service: {}", e.getMessage()); response.setError(e.getMessage()); } // 返回响应 ctx.writeAndFlush(response); } @Override public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception { LOGGER.error("Error occurred in server: {}", cause.getMessage()); ctx.close(); } } } // 定义 RPC 客户端 public class RpcClient { private static final Logger LOGGER = LoggerFactory.getLogger(RpcClient.class); private String host; private int port; public RpcClient(String host, int port) { this.host = host; this.port = port; } public Object invoke(String className, String methodName, Object... parameters) { // 创建连接 EventLoopGroup group = new NioEventLoopGroup(); try { Bootstrap b = new Bootstrap(); b.group(group) .channel(NioSocketChannel.class) .handler(new ChannelInitializer<SocketChannel>() { @Override public void initChannel(SocketChannel ch) throws Exception { // 添加解码器和编码器 ch.pipeline().addLast(new ObjectDecoder(ClassResolvers.cacheDisabled(null))); ch.pipeline().addLast(new ObjectEncoder()); // 添加业务处理类 ch.pipeline().addLast(new RpcClientHandler()); } }) .option(ChannelOption.SO_KEEPALIVE, true); // 连接服务器 ChannelFuture f = b.connect(host, port).sync(); LOGGER.info("Connected to server {}:{}", host, port); // 发送请求 RpcRequest request = new RpcRequest(); request.setClassName(className); request.setMethodName(methodName); request.setParameters(parameters); f.channel().writeAndFlush(request); // 等待服务器响应 RpcResponse response = RpcClientHandler.getResponse(); if (response.getError() != null) { LOGGER.error("Error occurred while invoking service: {}", response.getError()); } else { LOGGER.info("Result: {}", response.getResult()); return response.getResult(); } // 关闭连接 f.channel().closeFuture().sync(); } catch (Exception e) { LOGGER.error("Error occurred in client: {}", e.getMessage()); } finally { group.shutdownGracefully(); } return null; } // 定义业务处理类 private static class RpcClientHandler extends ChannelInboundHandlerAdapter { private static RpcResponse response; public static RpcResponse getResponse() { return response; } @Override public void channelRead(ChannelHandlerContext ctx, Object msg) throws Exception { response = (RpcResponse) msg; LOGGER.info("Received response: {}", response); } @Override public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception { LOGGER.error("Error occurred in client: {}", cause.getMessage()); ctx.close(); } } } // 测试代码 public class RpcTest { public static void main(String[] args) throws InterruptedException { // 启动服务器 RpcServer server = new RpcServer("localhost", 8080); server.start(); // 等待服务器启动 Thread.sleep(1000); // 创建客户端并调用服务 RpcClient client = new RpcClient("localhost", 8080); RpcService service = (RpcService) client.invoke("RpcServiceImpl", "add", 1, 2); System.out.println(service.add(1, 2)); } } ``` 以上代码实现了一个简单的 Java RPC Netty 框架,包括 RPC 请求和响应实体类、RPC 服务接口和实现类、RPC 服务器端和客户端。其中,RPC 服务器端和客户端都使用Netty 框架,通过序列化和反序列化实现了数据的传输和处理。在测试代码中,我们启动了一个 RPC 服务器,并通过客户端调用了 RPC 服务。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值