当前位置:   article > 正文

SpringBoot 2.0及以上版本整合redis_spring boot2.多安装redis使用什么版本

spring boot2.多安装redis使用什么版本

Spirngboot 2.0项目用 redis 3.2.0作为二级缓存 减少数据库的访问量

一、redis windows版本

redis 3.2.0 windows下载

二、安装及运行

解压后的文件目录
在这里插入图片描述
进入Redis-x64-3.2.100文件夹
在这里插入图片描述
(PS:如果springboot配置完redis后,如果要取出redis中放置的数据应该要开启客户端,不然会报错)

三、redis与springboot的整合

yml配置文件

 #缓存
  redis:
    database: 3
    host: 127.0.0.1
    jedis:
      pool:
        max-active: 8
        max-idle: 8
        max-wait: -1
        min-idle: 0
      shutdown-timeout: 100
    password: ''
    port: 6379
    timeout: 3600
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

pom配置文件添加依赖

<dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-redis</artifactId>
            <exclusions>
                <exclusion>
                    <groupId>redis.clients</groupId>
                    <artifactId>jedis</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>io.lettuce</groupId>
                    <artifactId>lettuce-core</artifactId>
                </exclusion>
            </exclusions>
  </dependency>
  <dependency>
            <groupId>redis.clients</groupId>
            <artifactId>jedis</artifactId>
  </dependency>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18

Service层

    @Autowired
    private RedisTemplate<Object,Object> redisTemplate;
    @Override
    public List<User> getAllList() {
        //重新定义字符串系列化
        RedisSerializer redisSerializer=new StringRedisSerializer();
        //将字符串序列化加到模板key中
        redisTemplate.setConnectionFactory(connectionFactory(host,port,password,database));
        Jackson2JsonRedisSerializer<Object> jackson2JsonRedisSerializer = new Jackson2JsonRedisSerializer<Object>(Object.class);
        ObjectMapper om = new ObjectMapper();
        om.setVisibility(PropertyAccessor.ALL, JsonAutoDetect.Visibility.ANY);
        om.enableDefaultTyping(ObjectMapper.DefaultTyping.NON_FINAL);
        jackson2JsonRedisSerializer.setObjectMapper(om);

        // 设置值(value)的序列化采用Jackson2JsonRedisSerializer。
        redisTemplate.setValueSerializer(jackson2JsonRedisSerializer);
        // 设置键(key)的序列化采用StringRedisSerializer。
        redisTemplate.setKeySerializer(new StringRedisSerializer());
        redisTemplate.setHashKeySerializer(new StringRedisSerializer());
        redisTemplate.setHashValueSerializer(new StringRedisSerializer());
        redisTemplate.afterPropertiesSet();
        redisTemplate.setKeySerializer(redisSerializer);
        //查询缓存里是否有过记录
        List<User> userList=(List<User>)redisTemplate.opsForValue().get("getList");
        if(userList!=null){
            //有就直接返回 无需查询数据库
            return userList;
        }else{
          //没有就加载到缓存里面
          redisTemplate.opsForValue().set("getList",userMapper.getAllList());
            return userMapper.getAllList();
        }

    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/386146
推荐阅读
相关标签
  

闽ICP备14008679号