如何使用redis存储session
答案:1 悬赏:0 手机版
解决时间 2021-03-04 02:14
- 提问者网友:贪了杯
- 2021-03-03 17:53
如何使用redis存储session
最佳答案
- 五星知识达人网友:第四晚心情
- 2021-03-03 19:26
@Repository
public class RedisService {
@Autowired
private RedisTemplate redisTemplate;
public void setKey(String key,Object obj){
ValueOperations ops =redisTemplate.opsForValue();
ops.set(key, obj);
}
public Object getValue(String key){
ValueOperations ops =redisTemplate.opsForValue();
return ops.get(key);
}
}
直接调用就可以了,对了还有spring-boot有对应的jar,如果没有,你可以下载redis客户端,要在结合你的项目配置相关配置文件
public class RedisService {
@Autowired
private RedisTemplate redisTemplate;
public void setKey(String key,Object obj){
ValueOperations
ops.set(key, obj);
}
public Object getValue(String key){
ValueOperations
return ops.get(key);
}
}
直接调用就可以了,对了还有spring-boot有对应的jar,如果没有,你可以下载redis客户端,要在结合你的项目配置相关配置文件
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯