无法使用Spring Data Redis保留数据

时间:2013-10-10 13:22:33

标签: java spring redis

我正在试验Spring Data Redis。我编写了一个Java类,允许我连接到Redis服务器,但不会在服务器中保留数据。有人会对可能出错的事情有所了解吗?以下是一些细节 -

我的春季配置看起来像 -

<bean id="jedisConnFactory" class="org.springframework.data.redis.connection.jedis.JedisConnectionFactory" p:use-pool="true"  p:host-name="127.0.0.1" p:port="6379"/>

<!-- redis template definition -->
<bean id="redisTemplate"
    class="org.springframework.data.redis.core.RedisTemplate"
    p:connection-factory-ref="jedisConnFactory"/>

我的Java代码看起来像这样 -

public class CacheClient {

   @Autowired
    private RedisTemplate<String, String> template;
    public void setValue(String key, String value){
      template.boundValueOps(key).set(value);
    }
}

一旦我调用了template.setValue(key,value),我在redis-cli上执行“get key”,但是我没有看到为该键设置任何值。

有人可以帮忙吗?

由于

2 个答案:

答案 0 :(得分:4)

@ user2862924您的评论正确,它序列化了键和值。它使用JdkSerializationRedisSerializer()将字符串"a"转换为\xac\xed\x00\x05t\x00\x01a

redisTemplate.setKeySerializer(new StringRedisSerializer());就是你想要的。

从配置文件中设置此值更清晰。

<bean id="stringRedisSerializer" class="org.springframework.data.redis.serializer.StringRedisSerializer"/>

    <bean id="jedisConnectionFactory" class="org.springframework.data.redis.connection.jedis.JedisConnectionFactory"
          p:hostName="127.0.0.1" p:port="6379"/>

    <bean id="redisTemplate" class="org.springframework.data.redis.core.RedisTemplate"
          p:connectionFactory-ref="jedisConnectionFactory" p:keySerializer-ref="stringRedisSerializer" p:valueSerializer-ref="stringRedisSerializer"/>

在更改序列化方法之前,从商店中删除所有先前序列化的键值,否则您将收到错误。

答案 1 :(得分:1)

尝试使用opsForValue()

public void setValue(String key, String value){
      template.opsForValue().set(key, value);
    }