springboot+netty实现upd客户端

@Slf4j
@Component
public class NettyUdpClient {
	@Autowired
	private PropertyUtils propertyUtils;
	@Autowired
    private NettyUdpClientHandler nettyClientHandler;
	private EventLoopGroup group;
	private Bootstrap b;
	private ChannelFuture cf;

	@Bean
	public void startUdpClient() {
		group = new NioEventLoopGroup();
		b = new Bootstrap();
		b.group(group)
		.channel(NioDatagramChannel.class)
		.handler(new ChannelInitializer<NioDatagramChannel>() {

			@Override
			protected void initChannel(NioDatagramChannel ch) throws Exception {
				// TODO Auto-generated method stub
				ChannelPipeline pipeline = ch.pipeline();
		        //自定义Handler
		        pipeline.addLast(nettyClientHandler);
			}
			
		});
	}

	public void connect() {
		try {
			this.cf = b.connect(propertyUtils.getNettyUdpIp(), propertyUtils.getNettyUdpPort()).sync();
		} catch (InterruptedException e) {
			log.error("客户端连接服务端异常:" + e);
		}
	}

	public ChannelFuture getChannelFuture() {
		if (this.cf == null) {
			this.connect();
		}
		if (!this.cf.channel().isActive()) {
			this.connect();
		}
		return this.cf;
	}

	public void close() {
		try {
			this.cf.channel().closeFuture().sync();
			this.group.shutdownGracefully();
		} catch (InterruptedException e) {
			e.printStackTrace();
		}
	}

	public void sendMessage(String msg) throws InterruptedException {
		ChannelFuture cf = this.getChannelFuture();
		cf.channel().writeAndFlush(msg);
	}
}
@Slf4j
@Configuration
public class NettyUdpClientHandler extends ChannelInboundHandlerAdapter{

	
	@Override
    public void channelActive(ChannelHandlerContext ctx) {


        log.info("ClientHandler Active");
    }

    /**
     * @param ctx
     * @author xiongchuan on 2019/4/28 16:10
     * @DESCRIPTION: 有服务端端终止连接服务器会触发此函数
     * @return: void
     */
    @Override
    public void channelInactive(ChannelHandlerContext ctx) {

        ctx.close();
        log.info("服务端终止了服务");
    }

    @Override
    public void channelRead(ChannelHandlerContext ctx, Object msg) {
    	DatagramPacket datagramPacket = (DatagramPacket) msg;
    	ByteBuf byteBuf = datagramPacket.content();
        log.info("回写数据:" + byteBuf.toString(CharsetUtil.UTF_8));
        byteBuf.clear();
    }


    @Override
    public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) {

        //cause.printStackTrace();
        log.info("服务端发生异常【" + cause.getMessage() + "】");
        ctx.close();
    }

    /**
     * @param msg       需要发送的消息内容
     * @param channelId 连接通道唯一id
     * @author xiongchuan on 2019/4/28 16:10
     * @DESCRIPTION: 客户端给服务端发送消息
     * @return: void
     */
    public void channelWrite(Channel channel, String msg) {
    	ByteBuf byteBuf=Unpooled.copiedBuffer(msg, CharsetUtil.UTF_8);
    	channel.writeAndFlush(byteBuf);
    }
/**
	 * 向netty服务端发送消息
	 */
    @GetMapping("udp")
    public String udp() {
    	try {
			SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
			//nettyTcpClient.sendMessage("发送入网检测认证消息:" + df.format(new Date()));
			ChannelFuture channelFuture=nettyUdpClient.getChannelFuture();
			Channel channel=channelFuture.channel();
			nettyUdpClientHandler.channelWrite(channel, "发送终端检测认证消息:" + df.format(new Date()));
		} catch (Exception e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
        return "UDP-success";
    }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

-独孤求败-

你的鼓励将是我创作的最大动力

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

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

打赏作者

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

抵扣说明:

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

余额充值