最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

通過入門demo簡單了解netty使用方法

 更新時(shí)間:2019年12月05日 09:18:41   作者:guodaye  
這篇文章主要介紹了通過入門demo簡單了解netty使用方法,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下

這篇文章主要介紹了通過入門demo簡單了解netty使用方法,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下

前言

最近做一個(gè)項(xiàng)目:

大概需求: 多個(gè)溫度傳感器不斷向java服務(wù)發(fā)送溫度數(shù)據(jù),該傳感器采用socket發(fā)送數(shù)據(jù);該數(shù)據(jù)以$符號(hào)開頭和結(jié)尾,最后將處理的數(shù)據(jù)存入數(shù)據(jù)庫;

我想到的處理方式:采用netty來接收和處理數(shù)據(jù),然后用mybatis將處理后的數(shù)據(jù)存入數(shù)據(jù)庫;

我在這之前從來沒使用過netty,在網(wǎng)上倒是看到不少關(guān)于netty的文章,如今就趁著這個(gè)項(xiàng)目寫一下我所學(xué)到的東西和遇到的問題,又是怎么去解決的;

接下來的幾篇文章都是圍繞著這個(gè)項(xiàng)目來寫的;本篇主要寫netty的入門demo;

正文

代碼部分

新建一個(gè)maven項(xiàng)目

首先在pom.xml中導(dǎo)入:

 <!-- https://mvnrepository.com/artifact/io.netty/netty-all -->
    <dependency>
      <groupId>io.netty</groupId>
      <artifactId>netty-all</artifactId>
      <version>5.0.0.Alpha1</version>
    </dependency>

服務(wù)端
1. DiscardServer類,netty的服務(wù)端

public class DiscardServer {
  public void run(int port) throws Exception {
    EventLoopGroup bossGroup = new NioEventLoopGroup();
    EventLoopGroup workerGroup = new NioEventLoopGroup();
    System.out.println("準(zhǔn)備運(yùn)行端口:" + port);
    try {
      ServerBootstrap b = new ServerBootstrap();
      b = b.group(bossGroup, workerGroup)
          .channel(NioServerSocketChannel.class)
          .option(ChannelOption.SO_BACKLOG, 128)
          .childHandler(new ChildChannelHandler());
      //綁定端口,同步等待成功
      ChannelFuture f = b.bind(port).sync();
      //等待服務(wù)監(jiān)聽端口關(guān)閉
      f.channel().closeFuture().sync();
    } finally {
      //退出,釋放線程資源
      workerGroup.shutdownGracefully();
      bossGroup.shutdownGracefully();
    }
  }
  public static void main(String[] args) throws Exception {
    new DiscardServer().run(8080);
  }
}

2. ChildChannelHandler類:

public class ChildChannelHandler extends ChannelInitializer<SocketChannel> {

  protected void initChannel(SocketChannel socketChannel) throws Exception {
    socketChannel.pipeline().addLast(new DiscardServerHandler());
  }
}

3. DiscardServerHandler類

在這里是繼承的ChannelHandlerAdapter類,當(dāng)然還可以繼承其他的類,例如SimpleChannelInboundHandler,ChannelInboundHandlerAdapter都可以

public class DiscardServerHandler extends ChannelHandlerAdapter {
  @Override
  public void channelRead(ChannelHandlerContext ctx, Object msg) {

    try {
      ByteBuf in = (ByteBuf) msg;
      System.out.println("傳輸內(nèi)容是");
      System.out.println(in.toString(CharsetUtil.UTF_8));
      ByteBuf resp= Unpooled.copiedBuffer("收到信息$".getBytes());
      ctx.writeAndFlush(resp);
    } finally {
      ReferenceCountUtil.release(msg);
    }
  }
  @Override
  public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception {
    // 出現(xiàn)異常就關(guān)閉
    cause.printStackTrace();
    ctx.close();
  }
}

啟動(dòng)netty服務(wù);

好了,到這里就能開始接收數(shù)據(jù)了;

客服端

1.TimeClient類

public class TimeClient {
  public void connect(int port,String host)throws Exception{
    //配置客戶端
    System.out.println(port+"--"+host);
    EventLoopGroup eventLoopGroup=new NioEventLoopGroup();
    try {
      Bootstrap b=new Bootstrap();
      b.group(eventLoopGroup).channel(NioSocketChannel.class)
          .option(ChannelOption.TCP_NODELAY,true)
          .handler(new ChannelInitializer<SocketChannel>() {
            protected void initChannel(SocketChannel socketChannel) throws Exception {
              socketChannel.pipeline().addLast(new TimeClientHandler());
            }
          });
      //綁定端口,同步等待成功
      ChannelFuture f = b.connect(host,port).sync();
      //等待服務(wù)監(jiān)聽端口關(guān)閉
      f.channel().closeFuture().sync();
    }finally {
      //優(yōu)雅退出,釋放線程資源
      eventLoopGroup.shutdownGracefully();
    }
  }
  public static void main(String[] args) throws Exception {
    new TimeClient().connect(8090,"localhost");
  }
}

2.TimeClientHandler 類

public class TimeClientHandler extends ChannelHandlerAdapter {
  private byte[] req;
  public TimeClientHandler(){
    req="$tmb00035ET3318/08/22 11:5704026.75,027.31,20.00,20.00$".getBytes();
  }
  @Override
  public void channelActive(ChannelHandlerContext ctx) throws Exception {
    ByteBuf message=null;
    for(int i=0;i<100;i++){
      message=Unpooled.buffer(req.length);
      message.writeBytes(req);
      ctx.writeAndFlush(message);
    }
  }
  @Override
  public void channelRead(ChannelHandlerContext ctx, Object msg) {
    try {
      ByteBuf in = (ByteBuf) msg;
      System.out.println(in.toString(CharsetUtil.UTF_8));
    } finally {
      ReferenceCountUtil.release(msg);
    }
  }
  @Override
  public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception {
    // 出現(xiàn)異常就關(guān)閉
    cause.printStackTrace();
    ctx.close();
  }
}

在channelActive類中向服務(wù)端發(fā)送100次消息

先啟動(dòng)服務(wù)端,再啟動(dòng)客戶端;

測(cè)試結(jié)果一:

服務(wù)端:

傳輸內(nèi)容是
$tmb00035ET3318/08/22 11:5704026.75,027.31,20.00,20.00$$tmb00035ET3318/08/22 11:5704026.75,027.31,20.00,20.00$$tmb00035ET3318/08/22 11:5704026.75,027.31,20.00,20.00$$tmb00035ET3318/08/22 11:5704026.75,027.31,20.00,20.00$$tmb00035ET3318/08/22 11:5704026.75,027.31,20.00,20.00$$tmb00035ET3318/08/22 11:5704026.75,027.31,20.00,20.00$$tmb00035ET3318/08/22 11:5704026.75,027.31,20.00,20.00$$tmb00035ET3318/08/22 11:5704026.75,027.31,20.00,20.00$$tmb00035ET3318/08/22 11:5704026.75,027.31,20.00,20.00$$tmb00035ET3318/08/22 11:5704026.75,027.31,20.00,20.00$$tmb00035ET3318/08/22 11:5704026.75,027.31,20.00,20.00$$tmb00035ET3318/08/22 11:5704026.75,027.31,20.00,20.00$$tmb00035ET3318/08/22 11:5704026.75,027.31,20.00,20.00$$tmb00035ET3318/08/22 11:5704026.75,027.31,20.00,20.00$$tmb00035ET3318/08/22 11:5704026.75,027.31,20.00,20.00$$tmb00035ET3318/08/22 11:5704026.75,027.31,20.00,20.00$$tmb00035ET3318/08/22 11:5704026.75,027.31,20.00,20.00$$tmb00035ET3318/08/22 11:5704026.75,027.31,20.00,20.00$$tmb00035ET3318/08/22 11:5704026.7
傳輸內(nèi)容是
5,027.31,20.00,20.00$$tmb00035ET3318/08/22 

客戶端:

8080--localhost
收到信息收到信息收到信息收到信息收到信息收到信息收到信息收到信息收到信息收到信息收到信息收到信息收到信息收到信息收到信息收到信息收到信息收到信息收到信息收到信息收到信息收到信息收到信息收到信息收到信息收到信息收到信息收到信息

由于內(nèi)容太多,就不都貼出來了j,直接寫結(jié)果吧:

客戶端發(fā)送100次數(shù)據(jù),但是服務(wù)端只收到了28次,然后服務(wù)端向客戶端返回28次數(shù)據(jù),客戶端卻只收到一次;

可以發(fā)現(xiàn)服務(wù)端接收的數(shù)據(jù)不是完整接收的,這里出現(xiàn)了拆包,粘包的問題

這里就不討論拆包,粘包了,百度一大堆,相信你也能看明白;

解決粘包,拆包的問題

解決拆包粘包的方法有很多:

  • 消息定長,固定每個(gè)消息的固定長度
  • 在消息末尾使用換行符對(duì)消息進(jìn)行分割,或者使用其他特殊字符來對(duì)消息進(jìn)行分割;
  • 將消息分為消息頭和消息體,消息頭中包含標(biāo)識(shí)消息總長度;
  • 更復(fù)雜的,或者其他的協(xié)議。

由于我負(fù)責(zé)的這個(gè)項(xiàng)目戶端發(fā)送是由$開始和結(jié)束的數(shù)據(jù),返回的數(shù)據(jù)我也設(shè)置的$結(jié)束,所以我選擇了第二種方法;

只需要在服務(wù)端的DiscardServerHandler中和客戶端的ChannelInitializer中添加幾行相同的代碼就行了;

服務(wù)端:

public class ChildChannelHandler extends ChannelInitializer<SocketChannel> {

  protected void initChannel(SocketChannel socketChannel) throws Exception {
    ByteBuf byteBuf= Unpooled.copiedBuffer("$".getBytes());
    socketChannel.pipeline().addLast(new DelimiterBasedFrameDecoder(1024,byteBuf));
    socketChannel.pipeline().addLast(new DiscardServerHandler());
  }
}

客戶端:

在如下的位置添加如下的代碼:

 .handler(new ChannelInitializer<SocketChannel>() {
            protected void initChannel(SocketChannel socketChannel) throws Exception {
              ByteBuf byteBuf= Unpooled.copiedBuffer("$".getBytes());
              socketChannel.pipeline().addLast(new DelimiterBasedFrameDecoder(1024,byteBuf));
              socketChannel.pipeline().addLast(new TimeClientHandler());
            }
          });

測(cè)試結(jié)果

這里我就不發(fā)送100次數(shù)據(jù)了,值發(fā)送10次:

服務(wù)端:

傳輸內(nèi)容是
tmb00035ET3318/08/22 11:5704026.75,027.31,20.00,20.00
傳輸內(nèi)容是
tmb00035ET3318/08/22 11:5704026.75,027.31,20.00,20.00
傳輸內(nèi)容是
tmb00035ET3318/08/22 11:5704026.75,027.31,20.00,20.00
傳輸內(nèi)容是
tmb00035ET3318/08/22 11:5704026.75,027.31,20.00,20.00
傳輸內(nèi)容是
tmb00035ET3318/08/22 11:5704026.75,027.31,20.00,20.00
傳輸內(nèi)容是
tmb00035ET3318/08/22 11:5704026.75,027.31,20.00,20.00
傳輸內(nèi)容是
tmb00035ET3318/08/22 11:5704026.75,027.31,20.00,20.00
傳輸內(nèi)容是
tmb00035ET3318/08/22 11:5704026.75,027.31,20.00,20.00
傳輸內(nèi)容是
tmb00035ET3318/08/22 11:5704026.75,027.31,20.00,20.00
傳輸內(nèi)容是
tmb00035ET3318/08/22 11:5704026.75,027.31,20.00,20.00

客戶端:

收到信息
收到信息
收到信息
收到信息
收到信息
收到信息
收到信息
收到信息
收到信息
收到信息

解決我所遇到的問題了;

總結(jié)

  • 本來我只需要寫服務(wù)端的代碼的,但是為了更好的演示,所以我寫了客戶端
  • 本篇文章主要就是使用netty發(fā)送和接收數(shù)據(jù),還有就是拆包和粘包的問題,當(dāng)然,netty還可以做其他很多的事情;
  • netty針對(duì)對(duì)拆包粘包的問題有很多種解決辦法:例如可以用LineBasedFrameDecoder和StringDecoder組合將信息已換行符來進(jìn)行拆分;也可以用我上邊的解決方法來解決以特殊字符結(jié)束的信息;
  • 在解決拆包粘包信息的時(shí)候,注意信息是否符合定義的規(guī)則,不然會(huì)處理不了數(shù)據(jù):例如我上邊的例子,如果服務(wù)端在返回信息是不以$符結(jié)尾的話,客戶端是打印不出來信息的,因?yàn)榭蛻舳藭?huì)認(rèn)為服務(wù)端還沒有發(fā)送完信息,會(huì)一直等待,而且打印不出數(shù)據(jù);
  • 這篇文章只是我入門netty的一個(gè)小demo,對(duì)我還是很有幫助的,當(dāng)然也希望對(duì)閱讀者有那么一點(diǎn)點(diǎn)幫助;
  • 有什么不對(duì)的地方還請(qǐng)指正,建議也是多多益善;
  • 源碼地址

以上就是本文的全部內(nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

最新評(píng)論

高阳县| 会同县| 焦作市| 通江县| 桃园县| 夏邑县| 襄樊市| 罗田县| 苍梧县| 班玛县| 乌兰察布市| 日土县| 尉犁县| 新河县| 孟村| 内丘县| 师宗县| 灵宝市| 凉城县| 鹤山市| 留坝县| 驻马店市| 舟山市| 福海县| 宜州市| 博客| 托克逊县| 沾化县| 北票市| 承德市| 禄丰县| 招远市| 阿瓦提县| 琼海市| 蚌埠市| 海兴县| 名山县| 许昌市| 泸西县| 友谊县| 普安县|