1.将map类型的数据存入redis中

//转成JSON类型,存入redis中
String json = JSON.toJSONString(dictMap);
redisUtils.set("dict", json);

2.取出redis中的数据,转成map类型

//取出redis的数据,里面的数据类型此时还是JsonObject,需要指定自己要转换的类型进行转换后才可以使用
String dict = redisUtils.get("dict");
Map<String, List<Dict>> map = JSON.parseObject(dict, new TypeReference<Map<String, List<Dict>>>() {});