netty学习(三)springboot+netty+mybatis

[TOC]

前言

前面写到了springboot整合netty,只是使用netty将数据处理了,还没有存入数据库,现在就把mybatis加进去吧;刚好最近也有一位读者问到了这个问题;

正文

首先引入pom依赖

 
            org.springframework.boot
            spring-boot-starter
        
        
            org.springframework.boot
            spring-boot-starter-test
            test
        
        
        
            io.netty
            netty-all
            4.1.29.Final
        
        
        
            org.mybatis.spring.boot
            mybatis-spring-boot-starter
            1.3.2
        
        
        
            mysql
            mysql-connector-java
        
        
        
            com.alibaba
            druid-spring-boot-starter
            1.1.9
        
复制代码

配置

配置文件配置:

spring:
  datasource:
    druid:
      url: jdbc:mysql://localhost:3306/authority?useUnicode=true&characterEncoding=utf-8&useSSL=false
      username: root
      password: 123456
      driver-class-name: com.mysql.jdbc.Driver
      initial-size: 2
      max-active: 30
      min-idle: 2
      max-wait: 1234
      pool-prepared-statements: true
      max-pool-prepared-statement-per-connection-size: 5
#mybatis
mybatis:
  mapper-locations: classpath:mapper/*.xml
  type-aliases-package: com.example.demo.entity
复制代码

记住springboot的启动类上要扫描mapper接口包

springboot中启动netty

其实springboot中启动netty的方式有很多种,前一篇netty文章中我通过实现CommandLineRunner接口来启动netty服务,后面写了一篇springbean生命周期,发现springboot可以用配置bean的方式启动netty服务,在启动方法上添加@PostConstruct注解,代码如下:

NettyStart

@Component
public class NettyStart {
    @Resource
    private ServerHandler serverHandler;
    
    private EventLoopGroup bossGroup = new NioEventLoopGroup();
    private EventLoopGroup workGroup = new NioEventLoopGroup();
    
    /**
     * 启动netty服务
     * @throws InterruptedException
     */
    @PostConstruct
    public void start() throws InterruptedException {
        ServerBootstrap b=new ServerBootstrap();
        b.group(bossGroup,workGroup)
                .channel(NioServerSocketChannel.class)
                .option(ChannelOption.SO_BACKLOG,128)
                .childHandler(new ChannelInitializer() {
                    @Override
                    protected void initChannel(SocketChannel socketChannel) throws Exception {
                        socketChannel.pipeline().addLast(serverHandler);
                    }
                });
        ChannelFuture future = b.bind(8080).sync();
        if (future.isSuccess()) {
            System.out.println("启动 Netty 成功");
        }
    }
    /**
     * 销毁
     */
    @PreDestroy
    public void destroy() {
        bossGroup.shutdownGracefully().syncUninterruptibly();
        workGroup.shutdownGracefully().syncUninterruptibly();
        System.out.println("关闭 Netty 成功");
    }
}

复制代码

其中的serverHandler是通过依赖注入的方式注入的,这是为了后面serverHandler类中可以直接依赖注入;

ServerHandler类:

@Component
@Sharable
public class ServerHandler extends ChannelInboundHandlerAdapter {
    @Resource
    private UserService userService;

    /**
     * 获取数据
     * @param ctx 上下文
     * @param msg 获取的数据
     */
    @Override
    public void channelRead(ChannelHandlerContext ctx, Object msg){
        ByteBuf readMessage= (ByteBuf) msg;
        System.out.println(readMessage.toString(CharsetUtil.UTF_8));
        List users = userService.selectAll();
        users.forEach(user-> System.out.println(user.toString()));
    }
}
复制代码

这个类加了@Component@Sharable注解,前一个不用解释了,后一个个人觉得:这个类被spring托管了,那么这个类就是单例,相当于这个类是共享的,所以得加@Sharable注解,关于该注解,可以参考这篇文章:blog.csdn.net/supper10090… 这里我注入了UserService类,这里是操作数据库的方法

UserService

public interface UserService {
    /**
     * 获取所有数据
     * @return
     */
    List selectAll();
}
复制代码

UserServiceImpl


@Service
public class UserServiceImpl implements UserService {
    @Resource
    private UserMapper userMapper;
    @Override
    public List selectAll() {
        return userMapper.selectAll();
    }
}

复制代码

实体类

public class User implements Serializable {
    private static final long serialVersionUID = -7776017450107481817L;
    private int id;
    private String name;
    private String password;
    private int age;
    private Date birthday;
}
复制代码

set,get方法省略

mapper接口

@Repository
public interface UserMapper {
    List selectAll();
}
复制代码

mapper的xml文件就补贴上来了;

输出结果

测试
User{id=1, name='admin', password='admin', age=10, birthday=Tue May 30 00:00:00 CST 2017}
User{id=2, name='teacher', password='teacher', age=30, birthday=null}
User{id=3, name='student', password='student', age=20, birthday=null}

复制代码

我的mapper中只是查询数据库操作,并没有写如数据,如果要写入,修改mapper就行了;

总结

在很多关于netty的项目或博客中都是通过new的方式添加pipeline的,而我这里用了注入的方式;我是因为我所做的这个项目是单机版的,相当于就是所有的功能都在一个项目里面,而且单个功能操作数据库的频率比较高,而且我做的这个项目处理不了高并发,并发高了就会gg;所以我所写的这些文章都是从项目上所学来的; 如果通过new的方式添加pipeline,那么在处理数据的方法中可以通过一个类实现ApplicationContextAware接口来获取spring上下文;然后在调用bean,操作数据库;下面是参考链接: 在非spring管理的类中,使用spring管理的类

  • springboot启动netty的方式有很多:一种是实现CommandLineRunner接口;一种是配置bean,指定初始化方法;还有其他的

源码在GitHub上面

参考文章:crossoverjie.top/2018/05/24/…

你可能感兴趣的:(netty学习(三)springboot+netty+mybatis)