关于Spring Data Redis存储时key value数据的乱码问题
程序员文章站
2022-04-15 12:06:09
...
上面全是废话,解决方案看最后!!!
最近在做一个关于页面登录的项目,要求邮件的**码发到客户邮箱时,**码保存24小时./
此时实现需要是想将用户存放到redis中,设置一个存放时间是1 TimeUnit.DAYS,所以依赖jar包已经全部导入,applicationContext中已经配置,到redix中是一串乱码
redis 127.0.0.1:6379> keys *
1) "\xac\xed\x00\x05t\x00\x06street"
设置时也没有中文.所以找了很久,最后发现是配置文件出了问题
<!--jedis连接池配置-->
<bean id="poolConfig" class="redis.clients.jedis.JedisPoolConfig">
<property name="maxIdle" value="300" />
<property name="maxWaitMillis" value="3000" />
<property name="testOnBorrow" value="true" />
</bean>
<!--jedis连接工厂-->
<bean id="connectionFactory"
class="org.springframework.data.redis.connection.jedis.JedisConnectionFactory"
p:host-name="localhost" p:port="6379" p:pool-config-ref="poolConfig"
p:database="0" />
<!--spring data 提供的模版-->
<bean id="redisTemplate" class="org.springframework.data.redis.core.StringRedisTemplate">
<property name="connectionFactory" ref="connectionFactory" />
<!--存储string类型的key和value,如果不指定,存储的是-->
<property name="keySerializer">
<bean class="org.springframework.data.redis.serializer.JdkSerializationRedisSerializer" />
</property>
<property name="valueSerializer">
<bean class="org.springframework.data.redis.serializer.JdkSerializationRedisSerializer">
</bean>
</property>
因为spring操作redis是在jedis客户端基础上进行的,而jedis客户端与redis交互的时候协议中定义是用byte类型交互,jedis中提供了string类型转为byte[]类型,但是看到spring-data-redis中RedisTemplate<K, V>在操作的时候k,v是泛型的,所以RedisTemplate中有了上面那段代码,在没有特殊定义的情况下,spring默认采用defaultSerializer = new JdkSerializationRedisSerializer();来对key,value进行序列化操作,在经过查看JdkSerializationRedisSerializer中对序列化的一系列操作.以上代码的问题在于使用的bean class 是
bean class="org.springframework.data.redis.serializer.JdkSerializationRedisSerializer"s
所以将其更改为
<bean class="org.springframework.data.redis.serializer.StringRedisSerializer">
这样应该没问题了.
上述有问题的建议大家查找以下的原因:
applicationContext.xml文件,上述代码块,除了改正过来的其他都对,其次就是jar的依赖引用
<!-- redis nosql 内存数据库 -->
<!--java操作redis的依赖jar-->
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>${jedis.version}</version>
</dependency>
<!--spring data redis-->
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-redis</artifactId>
<version>1.4.1.RELEASE</version>
</dependency>
希望对大家有用
下一篇: JSON字符串和js对象转换