package com.boot.redis.config;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
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;
import java.io.Serializable;
/**
* Redis 配置
*/
@Configuration
public class RedisConfig {
private static final Logger LOGGER = LoggerFactory.getLogger(RedisConfig.class) ;
/**
* 序列化配置
*/
@Bean
public RedisTemplate<String, Serializable> redisTemplate
(LettuceConnectionFactory redisConnectionFactory) {
LOGGER.info("RedisConfig == >> redisTemplate ");
RedisTemplate<String, Serializable> template = new RedisTemplate<>();
template.setKeySerializer(new StringRedisSerializer());
template.setValueSerializer(new GenericJackson2JsonRedisSerializer());
template.setConnectionFactory(redisConnectionFactory);
return template;
}
}

飞翔的佩奇
- 粉丝: 6742
最新资源
- python程序源码-桌面宠物.zip
- CentOS7环境下Mysql5.7版本安装说明
- DD3118S USB3.0读卡器控制器口芯片参考原理图
- 虹软ArcSoft 4.1 增值版 Delphi版DEMO
- 家用电冰箱行业深度分析:2024年1-2月全国家用电冰箱产量为1374.4万台.pdf
- 家具用PU涂层市场研究:预计2030年全球市场销售额将达到42.74亿美元.pdf
- 家用干果机市场研究:预计2030年全球市场销售额将达到16.13亿美元.pdf
- 烹饪用油行业剖析:预计2030年全球市场销售额将达到2795亿美元.pdf
- 匹克球设备行业深度研究:2023年全球市场销售额达到了2.04亿美元.pdf
- 啤酒市场分析:2023年我国啤酒出口量增至62103万升.pdf
- 皮质激素原料药市场分析:中国市场规模占据全球21.71%的份额.pdf
- 漂白硫酸盐木浆市场深度分析:预计2031年全球市场销售额将达到563.1亿美元.pdf
- 平板电脑行业:2023年出口金额达到23371.8百万美元.pdf
- 平地机市场分析:2024年1月,中国平地机市场销量同比增长8.95%(简报).pdf
- 葡萄酒行业深度分析:2023年中国进口量达到24959万升.pdf
- 企业信用卡行业剖析:北美、欧洲和日本的市场规模较大且保持稳定增长.pdf
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈


