关于spring:Spring系列之Redis的两种集成方式

49次阅读

共计 4284 个字符,预计需要花费 11 分钟才能阅读完成。

在工作中,咱们用到分布式缓存的时候,第一抉择就是 Redis,明天介绍一下 SpringBoot 如何集成 Redis 的,别离应用 Jedis 和 Spring-data-redis 两种形式。

一、应用 Jedis 形式集成

1、减少依赖

<!-- spring-boot-starter-web 不是必须的,这里是为了测试 -->
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
    <groupId>org.projectlombok</groupId>
    <artifactId>lombok</artifactId>
    <optional>true</optional>
</dependency>
<dependency>
    <groupId>redis.clients</groupId>
    <artifactId>jedis</artifactId>
</dependency>
<dependency>
<!-- fastjson 不是必须的,这里是为了测试 -->
    <groupId>com.alibaba</groupId>
    <artifactId>fastjson</artifactId>
    <version>1.2.73</version>
</dependency>

2、配置项

redis.host=localhost
redis.maxTotal=5
redis.maxIdle=5
redis.testOnBorrow=true
#以下形式也能够,SpringBoot 同样能将其解析注入到 JedisPoolConfig 中
#redis.max-total=3
#redis.max-idle=3
#redis.test-on-borrow=true

3、配置连接池

/**
 * @author 公 - 众 - 号:程序员阿牛
 * 因为 Jedis 实例自身不非线程平安的,因而咱们用 JedisPool
 */
@Configuration
public class CommonConfig {
    @Bean
    @ConfigurationProperties("redis")
    public JedisPoolConfig jedisPoolConfig() {return new JedisPoolConfig();
    }

    @Bean(destroyMethod = "close")
    public JedisPool jedisPool(@Value("${redis.host}") String host) {return new JedisPool(jedisPoolConfig(), host);
    }
}

4、测试

/**
 * @author 公 - 众 - 号:程序员阿牛
 */
@RestController
public class JedisController {
    @Autowired
    private JedisPool jedisPool;

    @RequestMapping("getUser")
    public String getUserFromRedis(){UserInfo userInfo = new UserInfo();
        userInfo.setUserId("A0001");
        userInfo.setUserName("张三丰");
        userInfo.setAddress("武当山");
        jedisPool.getResource().set("userInfo", JSON.toJSONString(userInfo));
        UserInfo userInfo1 = JSON.parseObject(jedisPool.getResource().get("userInfo"),UserInfo.class);
        return userInfo1.toString();}
}

运行后果如下:

咱们能够本人包装一个 RedisClient,来简化咱们的操作

应用 spring-data-redis

1、引入依赖

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-redis</artifactId>
        </dependency>

2、配置项

在 application.properties 中减少配置

spring.redis.host=localhost
spring.redis.port=6379

3、应用

/**
 * @author 公 - 众 - 号:程序员阿牛
 */
@RestController
public class RedisController {
    @Autowired
    private RedisTemplate redisTemplate;

    @RequestMapping("getUser2")
    public String getUserFromRedis(){UserInfo userInfo = new UserInfo();
        userInfo.setUserId("A0001");
        userInfo.setUserName("张三丰");
        userInfo.setAddress("武当山");
        redisTemplate.opsForValue().set("userInfo", userInfo);
        UserInfo userInfo1 = (UserInfo) redisTemplate.opsForValue().get("userInfo");
        return userInfo1.toString();}
}

是的,你只须要引入依赖、退出配置就能够应用 Redis 了, 不要快乐的太早,这外面会有一些坑

4、可能会遇到的坑


应用工具查看咱们方才 set 的内容,发现 key 后面多了一串字符,value 也是不可见的

起因

应用 springdataredis, 默认状况下是应用 org.springframework.data.redis.serializer.JdkSerializationRedisSerializer 这个类来做序列化
具体咱们看一下 RedisTemplate 代码如何实现的

/**
* 在初始化的时候,默认的序列化类是 JdkSerializationRedisSerializer
*/
public void afterPropertiesSet() {super.afterPropertiesSet();
        boolean defaultUsed = false;
        if (this.defaultSerializer == null) {this.defaultSerializer = new JdkSerializationRedisSerializer(this.classLoader != null ? this.classLoader : this.getClass().getClassLoader());
        }
   ... 省略无关代码
}
如何解决

很简略,本人定义 RedisTemplate 并指定序列化类即可

/**
 * @author 公 - 众 - 号:程序员阿牛
 */
@Configuration
public class RedisConfig {
    @Bean
    public RedisTemplate<String, Object> redisTemplate(RedisConnectionFactory connectionFactory) {RedisTemplate<String, Object> template = new RedisTemplate<>();
        template.setConnectionFactory(connectionFactory);
        template.setValueSerializer(jackson2JsonRedisSerializer());
        // 应用 StringRedisSerializer 来序列化和反序列化 redis 的 key 值
        template.setKeySerializer(new StringRedisSerializer());
        template.setHashKeySerializer(new StringRedisSerializer());
        template.setHashValueSerializer(jackson2JsonRedisSerializer());
        template.afterPropertiesSet();
        return template;
    }

    @Bean
    public RedisSerializer<Object> jackson2JsonRedisSerializer() {
        // 应用 Jackson2JsonRedisSerializer 来序列化和反序列化 redis 的 value 值
        Jackson2JsonRedisSerializer serializer = new Jackson2JsonRedisSerializer(Object.class);
        ObjectMapper mapper = new ObjectMapper();
        mapper.setVisibility(PropertyAccessor.ALL, JsonAutoDetect.Visibility.ANY);
        mapper.enableDefaultTyping(ObjectMapper.DefaultTyping.NON_FINAL);
        serializer.setObjectMapper(mapper);
        return serializer;
    }

}

查看运行后果:

哨兵和集群

只须要改一下配置项即可

# 哨兵
spring.redis.sentinel.master=mymaster
spring.redis.sentinel.nodes=127.0.0.1:26379,127.0.0.1:26380,127.0.0.1:26381

#集群
spring.redis.cluster.max-redirects=100
spring.redis.cluster.nodes=127.0.0.1:6379,127.0.0.1:6380,127.0.0.1:6381,127.0.0.1:6382,127.0.0.1:6383,127.0.0.1:6384

总结:

以上两种形式都能够,然而还是倡议你应用 Spring-data-redis,因为 Spring 通过多年的倒退,尤其是 Springboot 的日渐成熟,曾经为咱们简化了很多操作。

正文完
 0