spring-boot+mybatis整合redis缓存

springboot+mybatis整合redis实现缓存(写的略微粗糙,各位大佬凑活看吧)

开发环境/工具:

idea

jdk1.8

mysql

redis

RedisDesktopManager(用于查看,可用可不用)

开始:

idea创建好springboot项目并生成所需要的实体类以及mapper/mapping。(此处不做详细讲解我会把配置文件贴在下面,如不知如何操作可参考我之前的博客https://blog.csdn.net/zks_4826/article/details/81603865)

创建完毕后结构如下图

spring-boot+mybatis整合redis缓存_第1张图片spring-boot+mybatis整合redis缓存_第2张图片

注意:此处只需要看我选择的几个文件即可

其中:pom.xml

        
        
            org.springframework.boot
            spring-boot-starter-data-redis
        

 

application.yml

  redis:
    host: 127.0.0.1
    port: 6379
    jedis: #可省略不写
      pool:
        max-active: 8 #连接池最大连接数(使用负值表示没有限制)
        max-wait: -1ms #连接池最大阻塞等待时间(使用负值表示没有限制)
        max-idle: 8 #连接池中的最大空闲连接
        min-idle: 0 #连接池中的最小空闲连接
    timeout: 10000ms #连接超时时间(毫秒)

mybatis-generator.xml






    
    

    
        
            
            
            
        

        
        
        

        
            
        

        
        
            
            
        

        
        
            
        

        
        
            
        

        
        

注意:此处生成的*mapping.xml名称可能会是*mapper.xml注意自行更改

启动类ZhouApplication.java

package com.zks;

import org.apache.ibatis.annotations.Mapper;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cache.annotation.EnableCaching;

@MapperScan("com.zks.mapper")
@SpringBootApplication
@EnableCaching
public class ZhouApplication {

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

}

数据库表

spring-boot+mybatis整合redis缓存_第3张图片

RedisController.java

package com.zks.controller;

import com.zks.entity.TUser;
import com.zks.service.TUserService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.data.redis.core.StringRedisTemplate;
import org.springframework.data.redis.core.ValueOperations;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RestController;

import java.util.Date;
import java.util.concurrent.TimeUnit;

/**
 * @author :zhoukaishun
 * @date :Created in 2019/5/31 15:08
 * @description:${description}
 * @modified By:
 * @version: $version$
 */
@RestController
public class RedisController {
    @Autowired
    StringRedisTemplate stringRedisTemplate;
    @Autowired
    TUserService tUserService;
    @Autowired
    RedisTemplate redisTemplate;
    @GetMapping("/redis")
    public String redis(){
        stringRedisTemplate.opsForValue().set("zks","zhoukaishun");
        return stringRedisTemplate.opsForValue().get("zks");
    }
    @GetMapping("/getPersonById/{id}")
    public String getPersonById(Model model, @PathVariable Integer id){
        String key = "user_" + id;
        ValueOperations operations = redisTemplate.opsForValue();
        boolean hasKey = redisTemplate.hasKey(key);
        if(hasKey){
            System.out.println("==========从缓存中获得数据begin:"+System.currentTimeMillis()+"=========");
            long begin = System.currentTimeMillis();
            TUser tuser = operations.get(key);
            long end = System.currentTimeMillis();
            System.out.println("===========从缓存中获得数据end:"+System.currentTimeMillis()+"===========");
            System.out.println("缓存查询时长为:"+(end-begin));
            return tuser.toString();
        }else{
            System.out.println("======从数据库去取值begin:"+System.currentTimeMillis()+"=======");
            long begin = System.currentTimeMillis();
            TUser tuser = tUserService.getPersonById(id);
            long end = System.currentTimeMillis();
            System.out.println("======从数据库去取值end:"+System.currentTimeMillis()+"=======");
            System.out.println("数据库查询时长为:"+(end-begin));
            operations.set(key, tuser);
            return tuser.toString();
        }

    }
}

注:此处可先看redis()方法,用于简单测试redis是否可捕获我们设置的值

代码书写后启动无误后,启动本地redis

启动方法打开本地redis目录下shift+鼠标右键,进入命令行,输入  ./redis-server.exe redis.windows.conf    回车

spring-boot+mybatis整合redis缓存_第4张图片

下图表示启动成功,可在redis-desktop-manager登陆查看(可有可无,看一下比较放心)

spring-boot+mybatis整合redis缓存_第5张图片

名称随意,没有密码(因为没设置所以没有密码)端口默认6379  测试连接

spring-boot+mybatis整合redis缓存_第6张图片

因为之前写的0

 

spring-boot+mybatis整合redis缓存_第7张图片

刚开始并没有zks这个key

访问 http://localhost:8080/redis/  后如下图

spring-boot+mybatis整合redis缓存_第8张图片

spring-boot+mybatis整合redis缓存_第9张图片

现在说明我们项目是可以往redis中塞值的,下面我们结合数据库再看方法getPersonById 

前提是我们要将我们的实体序列化

spring-boot+mybatis整合redis缓存_第10张图片

运行项目访问:http://localhost:8080/getPersonById/1

如下图:

spring-boot+mybatis整合redis缓存_第11张图片

后台打印:

重新刷新网页重新获取id为1的数据

spring-boot+mybatis整合redis缓存_第12张图片

查询效率显而易见。至此,完毕。

参考文档:

https://blog.csdn.net/qq_27317475/article/details/81188642#commentBox

https://blog.csdn.net/zhangcongyi420/article/details/82686702

你可能感兴趣的:(spring相关知识点,springboot,redis)