json 转 List<User>
CollectionType collectionType = MAPPER.getTypeFactory().constructCollectionType(ArrayList.class, GroupUser.class);
//the sieze of the list is dependon the str json length although the json content is not the POJO type maybe
ArrayList<GroupUser> groupUsers = MAPPER.readValue(res, collectionType);CollectionType colle