json 集合 转 map
json 集合 转 List<map>
ObjectMapper objMap = new ObjectMapper();
List<Map> list =(List<Map>) objMap.readValue(strJson, List.class);
json 单体对象 转 map
ObjectMapper objMap = new ObjectMapper();
Map map =(Map) objMap.readValue(strJson, Map.class);

浙公网安备 33010602011771号