• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    Redis缓存-序列化对象存储乱码问题的解决

    使用Redis缓存对象会出现下图现象:

    键值对都是乱码形式。

    解决以上问题:

    如果是xml配置的

    我们直接注入官方给定的keySerializer,valueSerializer,hashKeySerializer即可:

    bean id="apiRedisTemplate" class="org.springframework.data.redis.core.RedisTemplate"
            p:connection-factory-ref="apiCacheRedisConnectionFactory">
            property name="keySerializer">
                bean
                    class="org.springframework.data.redis.serializer.GenericJackson2JsonRedisSerializer" />
            /property>
            property name="valueSerializer">
                bean
                    class="org.springframework.data.redis.serializer.GenericJackson2JsonRedisSerializer" />
            /property>
    
            property name="hashKeySerializer">
                bean
                    class="org.springframework.data.redis.serializer.GenericJackson2JsonRedisSerializer" />
            /property>
            property name="hashValueSerializer">
                bean
                    class="org.springframework.data.redis.serializer.GenericJackson2JsonRedisSerializer" />
            /property>
            property name="stringSerializer">
                bean
                    class="org.springframework.data.redis.serializer.StringRedisSerializer" />
            /property>
        /bean>

    spring boot 项目配置RedisConfig的时候使用以下方法:

    @Configuration
    public class RedisConfig {
        @Bean("jsonRedisTemplate")
        public RedisTemplateObject, Object> redisTemplate(RedisConnectionFactory redisConnectionFactory)
                throws UnknownHostException {
            RedisTemplateObject, Object> template = new RedisTemplateObject, Object>();
            template.setConnectionFactory(redisConnectionFactory);      //解决日期序列化问题
            ObjectMapper om = new ObjectMapper();
            om.setDateFormat(new SimpleDateFormat("yyyy-MM-dd hh:mm:ss"));
            GenericJackson2JsonRedisSerializer genericJackson2JsonRedisSerializer = new GenericJackson2JsonRedisSerializer(om);
            template.setDefaultSerializer(genericJackson2JsonRedisSerializer);
            return template;
    
        }
    }

    Redis存入中文,取出来是乱码wenti

    默认情况下,用redis存入中文,取出时会出现乱码情况,如图:

    解决

    我们再启动redis时,可以在redis-cli 后面加上 --raw,如图

    以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。

    您可能感兴趣的文章:
    • Redis如何存储对象与集合示例详解
    • 浅谈Redis存储数据类型及存取值方法
    • redis 存储对象的方法对比分析
    上一篇:比较几种Redis集群方案
    下一篇:你真的了解redis为什么要提供pipeline功能
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    Redis缓存-序列化对象存储乱码问题的解决 Redis,缓存,序列化,对象,