关于RedisTemplate 乱码?的解决方案
1.本次解决乱码的情况 不管是中英文在RDM中都是乱码?
这个样子
提前说明一下 并不影响在Java中的正常获取 用RedisTemplate 获取到Java中就不乱吗 所以存的二进制 我在RDM中并看不到到底算不算乱码那 如果不需要在RDM这种地方看基本无感可以不用搞 躺平就完事
但是我测试注册 发验证码 邮箱还不能重复 我上哪搞那么多的邮箱去 控制台打印?啊这。。。好像也行但是我就是看乱码不爽啊 不然我RDM白安装了啊。。。。
2.正文开始
1.处理部分形式
import com.alibaba.fastjson.support.spring.GenericFastJsonRedisSerializer;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.data.redis.core.RedisTemplate;
@Configuration
public class RedisTemplateConfig {
@Autowired
private RedisTemplate redisTemplate;
@Bean
public RedisTemplate redisTemplateInit() {
//设置序列化Key的实例化对象
redisTemplate.setKeySerializer(new GenericFastJsonRedisSerializer());
//设置序列化Value的实例化对象
redisTemplate.setValueSerializer(new GenericFastJsonRedisSerializer());
//设置序列化HashKey的实例化对象 不用hash结构这俩不用搞了
redisTemplate.setHashKeySerializer(new GenericFastJsonRedisSerializer());
//设置序列化Hash Value的实例化对象
redisTemplate.setHashValueSerializer(new GenericFastJsonRedisSerializer());
//对object 类型的序列化
redisTemplate.setDefaultSerializer(new FastJsonRedisSerializer<>(Object.class));
return redisTemplate;
//GenericFastJsonRedisSerializer 序列化器
// 不用fastJSON也可以用 springboot 自带的Jackson 的 GenericJackson2JsonRedisSerializer
}
}
修改后