//首先注入redisTemplate
@Autowired
private RedisTemplate<String, Object> redisTemplate;
//获取hash类型的ops
HashOperations<String, String, Object> stringObjectObjectHashOperations = redisTemplate.opsForHash();
//创建一个一个map并将一个对象的属性拆解进去
HashMap<String, Object> map = new HashMap<>();
map.put("username", user.getUsername());
map.put("password", user.getPassword());
map.put("tel", user.getTel());
map.put("address", user.getAddress());
map.put("imageFilename", user.getImageFilename());
map.put("email", user.getEmail());
map.put("coins", user.getCoins());
stringObjectObjectHashOperations.putAll(user.getId().toString(), map);
//为刚刚设置的key设置过期时间为6小时
redisTemplate.expire(user.getId().toString(), 6, TimeUnit.HOURS);
在项目中使用redisTemplate向redis添加hash类型数据
才艺のblog2024-05-08 23:37
相关推荐
s***11708 分钟前
一、安装Redis(win11环境下)g***866912 分钟前
springboot中配置logback-spring.xmlp***q7817 分钟前
SpringBoot实战:高效实现API限流策略3***161025 分钟前
【JavaEE】Spring Boot 项目创建6***v41729 分钟前
VScode 开发 Springboot 程序t***316532 分钟前
SpringBoot中自定义Starterz***33537 分钟前
SpringBoot获取bean的几种方式s***46981 小时前
【SpringBoot篇】详解Bean的管理(获取bean,bean的作用域,第三方bean)k***12172 小时前
SpringBoot返回文件让前端下载的几种方式s***P9822 小时前
Spring Boot 集成 MyBatis 全面讲解