java使用netty

Netty为什么会高效?回答就是良好的线程模型,和内存管理。在Java的NIO例子中就我将客户端的操作单独放在一个线程中处理了,这么做的原因在于如果将客户端连接串起来,后来的连接就要等前一个处理完,当然这并不意味着多线程比单线程有优势,而是在于每个客户端都需要进行读取准备好的缓存数据,再执行一些业务逻辑。如果业务逻辑耗时很久,那么顺序执行的方式没有多线程优势大。另一个方面目前多核CPU很常见了,多线程是个不错的选择。这些在第一节就说明过,也提到过NIO并不是提升了IO操作的速度,而是减少了CPU的浪费时间,这些概念不能搞混。

netty作为一款服务端框架,其优势在于自身良好的线程模型架构,关于netty的基本架构,我用几张图进行说明,netty主要处理方式有三种线程模型,1、 单线程 2、主从线程 3、主从多线程

1、事件分离器把接收到的客户事件分发到不同的事件处理器中,在netty中,处理器定义为channelHandler:如下图:
在这里插入图片描述
2、netty处理请求结构,理解起来就是,客户端发起请求,服务端开辟一个两个线程组,一个线程组负责接收请求,由于是线程组,可理解为线程池,能够处理的并发请求量就提升了,然后是工作线程,主线程组把请求转发给从线程组,也叫工作线程池,这个线程组负责执行具体的业务,
在这里插入图片描述

3、那么最终的处理结构就是,
在这里插入图片描述

下面用具体的代码来模拟一下上述过程的实现,这里为了演示,做一个客户端访问具体的端口号,由服务端返回一条信息,

4、pom文件:

        <dependency>
			<groupId>io.netty</groupId>
			<artifactId>netty-all</artifactId>
			<version>5.0.0.Alpha2</version>
			<!-- <version>4.1.24.Final</version> -->
		</dependency>

5、测试主类,

package com.congge.sort.netty.day1;

import io.netty.bootstrap.ServerBootstrap;
import io.netty.channel.ChannelFuture;
import io.netty.channel.EventLoopGroup;
import io.netty.channel.nio.NioEventLoopGroup;
import io.netty.channel.socket.nio.NioServerSocketChannel;

/**

  • netty测试
  • @author asus

*/
public class HelloServer {

public static void main(String[] args) {
	
	//定义主线程组,用于接收客户端请求,但是并不做任何逻辑处理
	EventLoopGroup bossGroup = new NioEventLoopGroup();
	//从线程组,主线程组会把相应的请求转交给该线程组,由从线程组去做任务
	EventLoopGroup workerGroup = new NioEventLoopGroup();
	//创建netty服务器
	ServerBootstrap serverBootstrap = new ServerBootstrap();
	try {
		//服务器设置绑定两个线程组,并设置相应的助手类【handler】
		serverBootstrap.group(bossGroup, workerGroup)
						.channel(NioServerSocketChannel.class)				//设置nio双向通道
						.childHandler(new HelloServerInitializer());		//子处理器
		
		//启动server并绑定端口号
		ChannelFuture channelFuture = serverBootstrap.bind(8088).sync();
		//关闭监听的channel
		channelFuture.channel().closeFuture().sync();
	} catch (Exception e) {
		e.printStackTrace();
	}finally {
		bossGroup.shutdownGracefully();
		workerGroup.shutdownGracefully();
	}
	
}

}

上述方法体中有一个很重要的组件叫做channelHandler,客户端连接服务端后的初始化业务逻辑操作均在这个hander里面进行编写,可以自定义,非常灵活,这里我用一个自定义的,

package com.congge.sort.netty.day1;


import io.netty.channel.ChannelInitializer;
import io.netty.channel.ChannelPipeline;
import io.netty.channel.socket.SocketChannel;
import io.netty.handler.codec.http.HttpServerCodec;

/**
 * 初始化配置器,channel注册成功后,会执行里面相应的初始化方法
 * @author asus
 *
 */
public class HelloServerInitializer extends ChannelInitializer<SocketChannel>{

	@Override
	protected void initChannel(SocketChannel channel) throws Exception {
		
		//channel获取相应的管道
		ChannelPipeline pipeline = channel.pipeline();
		
		//为管道增加相应的handler,可理解为是拦截器,或者监听器,监听客户端建立连接后的信息
		//当请求到服务端,我们需要对写出到客户端的数据做编码处理
		pipeline.addLast("httpCode",new HttpServerCodec());
		
		//添加自定义助手类,可添加多个
		pipeline.addLast("myHandler",new MyHandler());
		
	}

}

MyHandler为具体的执行业务逻辑,这里只是简单的写了一句字符串发送给客户端,

package com.congge.sort.netty.day1;

import io.netty.buffer.ByteBuf;
import io.netty.buffer.Unpooled;
import io.netty.channel.Channel;
import io.netty.channel.ChannelHandlerContext;
import io.netty.channel.SimpleChannelInboundHandler;
import io.netty.handler.codec.http.DefaultFullHttpResponse;
import io.netty.handler.codec.http.FullHttpResponse;
import io.netty.handler.codec.http.HttpHeaderNames;
import io.netty.handler.codec.http.HttpObject;
import io.netty.handler.codec.http.HttpRequest;
import io.netty.handler.codec.http.HttpResponseStatus;
import io.netty.handler.codec.http.HttpVersion;
import io.netty.util.CharsetUtil;

/**
 * 自定义助手类
 * @author asus
 *
 */
public class MyHandler extends SimpleChannelInboundHandler<HttpObject>{

	@Override
	protected void messageReceived(ChannelHandlerContext context, HttpObject msg) 
			throws Exception {
		
		//通过context的上下文获取channel
		Channel channel = context.channel();
		
		if(msg instanceof HttpRequest){
			//获取请求地址
			System.out.println(channel.remoteAddress());
		}
		
		//自定义相应客户端信息
		ByteBuf content = Unpooled.copiedBuffer("hello neyy <<<>>>",CharsetUtil.UTF_8);
		
		//侯建httpResponse对象
		FullHttpResponse response = new DefaultFullHttpResponse(
				HttpVersion.HTTP_1_1, 
				HttpResponseStatus.OK,
				content);
		
		//设置response对象的头信息
		response.headers().set(HttpHeaderNames.CONTENT_TYPE,"text/plain");
		response.headers().setInt(HttpHeaderNames.CONTENT_LENGTH,content.readableBytes());
		
		//将数据刷到客户端
		context.writeAndFlush(response);
		
	}

}

然后我们启动一下服务端,直接运行main函数即可,然后浏览器输入,http://localhost:8088/,
可以看到收到了服务端推送过来的内容,
在这里插入图片描述
到这里基本上就实现了服务端定向推送内容到客户端的实现

Java使用Netty生成代理需要使用动态代理技术。下面是一个简单的示例代码,演示了如何使用Netty生成代理: ```java import io.netty.bootstrap.Bootstrap; import io.netty.channel.Channel; import io.netty.channel.ChannelHandlerContext; import io.netty.channel.ChannelInboundHandlerAdapter; 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 java.lang.reflect.InvocationHandler; import java.lang.reflect.Method; import java.lang.reflect.Proxy; interface MyService { String hello(String name); } class MyServiceHandler extends ChannelInboundHandlerAdapter { private Object result; public Object getResult() { return result; } @Override public void channelRead(ChannelHandlerContext ctx, Object msg) throws Exception { result = msg; ctx.close(); } } class MyServiceProxy implements InvocationHandler { @Override public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { EventLoopGroup group = new NioEventLoopGroup(); try { MyServiceHandler handler = new MyServiceHandler(); Bootstrap bootstrap = new Bootstrap(); bootstrap.group(group) .channel(NioSocketChannel.class) .option(ChannelOption.TCP_NODELAY, true) .handler(new ChannelInitializer<SocketChannel>() { @Override protected void initChannel(SocketChannel ch) throws Exception { ch.pipeline().addLast(handler); } }); Channel channel = bootstrap.connect("localhost", 8888).sync().channel(); channel.writeAndFlush(args[0]); channel.closeFuture().sync(); return handler.getResult(); } finally { group.shutdownGracefully(); } } } public class NettyProxyExample { public static void main(String[] args) { MyService myService = (MyService) Proxy.newProxyInstance( NettyProxyExample.class.getClassLoader(), new Class[]{MyService.class}, new MyServiceProxy() ); String result = myService.hello("World"); System.out.println(result); } } ``` 以上示例代码中,定义了一个`MyService`接口,代表需要代理的服务。`MyServiceHandler`是Netty的`ChannelInboundHandlerAdapter`的子类,用于处理接收到的响应消息,并将结果存储在`result`变量中。`MyServiceProxy`是动态代理的实现类,它通过Netty客户端与服务器进行通信,并将代理方法的参数发送给服务器,然后等待服务器返回结果。 在`NettyProxyExample`的`main`方法中,使用`Proxy.newProxyInstance`方法创建了一个代理对象,该代理对象实现了`MyService`接口,并使用`MyServiceProxy`作为其调用处理器。通过代理对象调用接口方法时,实际上是调用了`MyServiceProxy`的`invoke`方法,在该方法内部使用Netty进行远程调用并获取结果。 请注意,以上示例仅仅是一个简单的示例,实际应用中可能需要根据具体需求进行适当修改和扩展。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

小码农叔叔

谢谢鼓励

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值