netty集成springboot

x33g5p2x  于2021-08-23 转载在 Java  
字(6.1k)|赞(0)|评价(0)|浏览(482)

一 前言

springboot 如何集成netty实现mapper调用不为null的问题让好多读者都头疼过,知识追寻者发了一点时间做了个基本入门集成应用给读者们指明条正确的集成方式,我相信,只要你有netty入门应用知识和spring框架基本知识,这篇文章对你将收益终身。随手点赞谢谢,如果是知识追寻者的忠粉记得分享哟。

二 pom.xml

来看看知识追寻者引入了哪些依赖

  1. netty-all 所有netty相关的包,知识追寻者这边用的非发布版本,读者可以自行更替
  2. postgresql驱动依赖,用什么数据库都没关系,读者可以换成mysql驱动
  3. mybatis-spring-boot-starte 集成mybatis需要用到的启动器
  4. druid-spring-boot-starte 当前主流性能较好的连接池,这篇文章没用到
  5. spring-boot-starter-test 测试类,这篇文章应该没用到测试
  6. lombok 开发神器,节省代码开发量
<!-- springboot start 父类 -->
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.0.0.RELEASE</version>
    </parent>
    <!-- web start配置 -->
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>io.netty</groupId>
            <artifactId>netty-all</artifactId>
            <version>5.0.0.Alpha1</version>
        </dependency>
        <dependency>
            <groupId>org.postgresql</groupId>
            <artifactId>postgresql</artifactId>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.mybatis.spring.boot</groupId>
            <artifactId>mybatis-spring-boot-starter</artifactId>
            <version>1.3.2</version>
        </dependency>
        <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>druid-spring-boot-starter</artifactId>
            <version>1.1.10</version>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <version>1.16.18</version>
            <scope>provided</scope>
        </dependency>
    </dependencies>

三 NettyServer

  1. 首先我们这边使用的固定监听端口8080
  2. 配置两个线程组parentGroup, childGroup
  3. 注入childChannelHandler 具体可以看第四节
  4. 定义了空参init的方法,标注注解@PostConstruct,这边需要对这个注解进行一个详细介绍;在依赖注入完成初始化后,如果一个方法有该注解就将会被执行;那到底什么时候执行呢?是在类进入service之前,被该注解标注的方法会被执行,并且只会执行一次;在使用这个注解时还有一个注意点就是所有的类都必须支持依赖注入,否则会报错,一般情况下仅支持空参;
  5. init方法中就是netty的辅助启动,配置处理类,进行同步阻塞操作;
  6. 最后看下destory()方法,在该方法上面标注了注解@PreDestroy;@PreDestroy表示一种回调的信息通知机制,即当实例在容器中被移除的时候会做出通知;通常我们会用来做一些关闭资源句柄等操作;
/**
 * @Author lsc
 * <p>netty server 端 </p>
 */
@Component
public class NettyServer {

    private Integer port = 8080;

    // 配置线程组 实质是 reactor线程组
    NioEventLoopGroup parentGroup = new NioEventLoopGroup();
    // 配置线程组
    NioEventLoopGroup childGroup = new NioEventLoopGroup();

    @Autowired
    ChildChannelHandler childChannelHandler;

    @PostConstruct
    public void init() throws Exception{


        // 启动 NIO
        ServerBootstrap serverBootstrap = new ServerBootstrap();
        //
        serverBootstrap.group(parentGroup,childGroup)
                .channel(NioServerSocketChannel.class)// 相当于 ServerSocketChannel
                .option(ChannelOption.SO_BACKLOG,1024)//TCP参数 1024 个队列
                .childHandler(childChannelHandler);// 处理事件
        // 绑定端口 同步阻塞等待同步成功 channelFuture 异步操作通知回调
        ChannelFuture channelFuture = serverBootstrap.bind(port).sync();
        // 同步阻塞等待服务监听端口关闭
        channelFuture.channel().closeFuture().sync();


    }

    @PreDestroy
    public void destory() throws InterruptedException {
        // 关闭资源
        parentGroup.shutdownGracefully().sync();
        childGroup.shutdownGracefully().sync();
    }

}

四 ChildChannelHandler

  1. ChildChannelHandler 类继承ChannelInitializer
  2. 注入NettyServerHandler,具体看第五节
  3. 实现initChannel 方法并且在方法用获得pipeline注入nettyServerHandler;
/**
 * @Author lsc
 * <p> </p>
 */
@Component
public class ChildChannelHandler extends ChannelInitializer<SocketChannel> {

    @Autowired
    NettyServerHandler nettyServerHandler;

    @Override
    protected void initChannel(SocketChannel socketChannel) throws Exception {
        ChannelPipeline pipeline = socketChannel.pipeline();
        //
        pipeline.addLast(nettyServerHandler);
    }
}

五 NettyServerHandler

  1. NettyServerHandler 继承ChannelHandlerAdapter
  2. 分别实现channelRead,channelReadComplete, exceptionCaught 方法
  3. 注入 NettyMapper ,自定义的mapper
  4. 重点在 channelRead 中 读取监听8080客户端发送的数据,然后写入zszxz-66666构建响应
  5. 如果mapper为空 会打印 can you believe that the mapper is null
  6. 最后执行回调处理;
/**
 * @Author lsc
 * <p> 处理类 </p>
 */
@Slf4j
@Component
@ChannelHandler.Sharable
public class NettyServerHandler extends ChannelHandlerAdapter {

    @Autowired
    NettyMapper mapper;



    @Override
    public void channelRead(ChannelHandlerContext ctx, Object msg) throws Exception {

        System.out.println("-----handler-------");
        // 转为字节缓冲区
        ByteBuf buf = (ByteBuf)msg;
        // 字节数组
        byte[] bytes = new byte[buf.readableBytes()];
        // 缓冲区数据读入字节数组
        buf.readBytes(bytes);
        // 编码转为字符串
        String body = (new String(bytes, "UTF-8"));
        System.out.println(" get the data from client : " + body);
        // 构造响应数据
        String responseData = "zszxz-66666";
        //  数据写入缓冲区
        ByteBuf resp = Unpooled.copiedBuffer(responseData.getBytes());

        // 写入数据响应
        ChannelFuture channelFuture = ctx.writeAndFlush(resp);
        if (mapper==null){
            System.out.println("can you believe that the mapper is null");
        }
        List<Map> user = mapper.getUser();
        System.out.println(user);
        // 回调处理
        channelFuture.addListener(new ChannelFutureListener() {
            @Override
            public void operationComplete(ChannelFuture channelFuture) throws Exception {
                if (channelFuture.isSuccess()){
                    log.info("success");
                }else {
                    log.error("error");
                }
            }
        });

    }

    @Override
    public void channelReadComplete(ChannelHandlerContext ctx) throws Exception {
        // 写入 seocketChannel
        ctx.flush();
    }

    @Override
    public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception {
        // 异常关闭资源句柄
        ctx.close();
    }
}

六 mapper

6.1 mapper接口

mapper接口中定义了一个查询方法,获得用户;

@Mapper
@Repository
public interface NettyMapper {

    List<Map> getUser();
}

6.2 mapper映射器

查询所有学生

<mapper namespace="com.zszxz.netty.mapper.NettyMapper">

    <select id="getUser" resultType="map">
        select * from "student"
    </select>
</mapper>

七 application.yml

spring:
  datasource:
    druid:
      #本地
      url: jdbc:postgresql://localhost:5432/springboot
      username: postgres
      password: 123456
      driver-class-name: org.postgresql.Driver
mybatis:
  mapper-locations: classpath:mapper/*.xml
  configuration:
    mapUnderscoreToCamelCase: true

八 启动类

/**
 * @Author lsc
 * <p>  知识追寻者netty系列</p>
 */
@SpringBootApplication
public class App    {

    public static void main(String[] args) {
        SpringApplication.run(App.class,args);
    }

}

九 执行结果

  1. 发送了知识追寻者好棒棒
  2. 响应 zszxz-66666

十 结语

最后祝贺读者们新年快乐,预防流感病毒,出门带口罩,不去人流量大的地方,吃熟肉,勤洗手;理性对待网上关于新型流感病毒,一起为中国加油,为武汉加油;过年也不要忘记学习哟,知识追寻者要贯彻每天都学习的方针,坚定不移的追随读者的步伐;

相关文章