JSON 字符串 转Map<String,List<Object>>亲测可用
String map1=jedis.get(ConstantUtils.SESSION_DISPATCHUSERIDBYCOMPANYIDMAP);
Map map = JSON.parseObject(map1, Map.class);
//遍历 Map  使用迭代器
Iterator it = map.keySet().iterator();
while(it.hasNext()){
   String values = map.get(it.next()).toString();
   List<Integer> list = JSON.parseArray(values , Integer.class);  //转成List数据
}
	