Springboot統合redisアクセスmapタイプの値


1:redisからkey値からmap集合を取る
@Resource
private RedisTemplate redisTemplate;
Map redisMap= redisTemplate.opsForHash().entries(key);

2:redisにmapセットを格納する
List productLsit = commodityServiceLmy.findProductList(params);
HashMap hashMap = new HashMap<>();
 hashMap.put("total", count);
 hashMap.put("rows", productLsit);
 // map     redis 
 redisTemplate.opsForHash().putAll(key,hashMap);