springboot集成redis存取map类型的值

  • Post author:
  • Post category:其他


1:从redis中根据key值取map集合

@Resource
private RedisTemplate redisTemplate;
Map<String,Object> redisMap= redisTemplate.opsForHash().entries(key);

2:往redis中存map集合

List<Product> productLsit = commodityServiceLmy.findProductList(params);
HashMap<String, Object> hashMap = new HashMap<>();
 hashMap.put("total", count);
 hashMap.put("rows", productLsit);
 //把map集合保存到redis中
 redisTemplate.opsForHash().putAll(key,hashMap);



版权声明:本文为qq_35995940原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。