SpringBoot 整合 Redis
1、简介
常用 Redis 客户端连接工具有 Jedis、Lettuce、RedisTemplate等,Jedis客户端连接 Redis 的时候,每个线程都要自己创建实例去连接,当有很多线程的时候,反复创建、关闭连接会造成比较大的开销,而且不是线程安全的。使用Lettuce可以克服这个问题。SpringBoot2.0版本之后默认Redis 连接池使用 Lettuce。RedisTemplate 封装很多Redis的高级api,同时Redis连接池支持 Lettuce,因此,RedisTemplate是目前主流连接客户端工具。
2、引入依赖
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
<version>3.1.2</version>
</dependency>
</dependencies>
3、配置文件(application.yml)
server:
port: 7001
spring:
data:
redis:
port: 6379 # 端口
host: localhost # ip地址
password: 123456 # 密码
lettuce: # 配置 Redis 连接池
pool:
max-active: 8
max-wait: 2ms
max-idle: 10
min-idle: 0
cluster:
refresh:
adaptive: true # 自动刷新集群拓扑
period: 20000 # 定时刷新
cluster:
max-redirects: 3
nodes: localhost:6379,localhost:6378 # 集群配置
4、RedisTemplate 配置
import org.springframework.boot.SpringBootConfiguration;
import org.springframework.context.annotation.Bean;
import org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.data.redis.serializer.GenericJackson2JsonRedisSerializer;
import org.springframework.data.redis.serializer.StringRedisSerializer;
@SpringBootConfiguration
public class RedisConfig {
@Bean
public RedisTemplate<String, Object> redisTemplate(LettuceConnectionFactory lettuceConnectionFactory){
RedisTemplate<String, Object> redisTemplate = new RedisTemplate<>();
redisTemplate.setConnectionFactory(lettuceConnectionFactory);
redisTemplate.setKeySerializer(new StringRedisSerializer());
redisTemplate.setValueSerializer(new GenericJackson2JsonRedisSerializer());
redisTemplate.setHashKeySerializer(new StringRedisSerializer());
redisTemplate.setHashValueSerializer(new GenericJackson2JsonRedisSerializer());
redisTemplate.afterPropertiesSet();
return redisTemplate;
}
}
注:Redis默认采用的序列化方式是jdk提供的 JdkSerializationRedisSerializer。
5、使用
@Service
public class ServiceTest {
@Autowired
private RedisTemplate<String, Object> redisTemplate;
public String test(){
redisTemplate.opsForValue().set("key1", "hello long");
return (String) redisTemplate.opsForValue().get("key1");
}
}
6、总结
本文介绍几种 Redis 的客户端,详细介绍 RedisTemplate 的配置和使用,本示例帮助大家入门,关于更高级的用法,参考官网。
本人是一个从小白自学计算机技术,对运维、后端、各种中间件技术、大数据等有一定的学习心得,想获取自学总结资料(pdf版本)或者希望共同学习,关注微信公众号:it自学社团。后台回复相应技术名称/技术点即可获得。(本人学习宗旨:学会了就要免费分享)
原文地址:https://blog.csdn.net/zwl2220943286/article/details/135856660
免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!