spring-boot-starter-data-redis的redis包怎么原生取值
时间: 2023-09-21 10:02:51 浏览: 152
spring-boot-klock-starter:基于redis的分布式锁组件,简单方便快捷插入项目,使项目拥有分布式锁能力
使用spring-boot-starter-data-redis的redis包原生取值,可以使用RedisTemplate的opsForValue()方法获取ValueOperations对象,然后调用其get()方法获取值。
例如:
```
@Autowired
private RedisTemplate<String, String> redisTemplate;
public String getValue(String key) {
return redisTemplate.opsForValue().get(key);
}
```
这里的redisTemplate是通过@Autowired注解自动注入的,可以根据自己的需要设置key的类型和值的类型。getValue()方法接受一个key参数,返回对应的值。
阅读全文