我想使用jackson json库将json字符串转换为List<Someclass>
。
public static List<T> toList(String json, Class<T> type, ObjectMapperProperties objectMapperProperties){
ObjectMapper objectMapper = ObjectMapperFactory.getObjectMapper(objectMapperProperties);
try {
return objectMapper.readValue(json, objectMapper.getTypeFactory().constructCollectionType(List.class, type));
} catch (JsonParseException e) {
e.printStackTrace();
} catch (JsonMappingException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
因此,如果我将Attribute.class
作为type
传递,则必须返回List<Attribute>
。
但是,这给了我一个编译时错误
T cannot be resolved to a type
我认为泛型部分在这里并不清楚。任何帮助表示赞赏。
答案 0 :(得分:12)
您需要先在通用方法中声明T
,在您的情况下,它将是:
public static <T> List<T> toList(String json, Class<T> type, ObjectMapperProperties objectMapperProperties)
有关更多信息,请查看oracle文档以获取通用方法:
https://docs.oracle.com/javase/tutorial/extra/generics/methods.html