从 Jackson 2.2 的 ObjectMapper 打印 JSON
现在我有一个实例,并希望获得一个漂亮的JSON。我的Google搜索的所有结果都提出了Jackson 1.x方法来做到这一点,我似乎找不到正确的,未弃用的2.2方法来做到这一点。尽管我不认为代码对于这个问题是绝对必要的,但我现在拥有的东西是这样的:org.fasterxml.jackson.databind.ObjectMapper
String
ObjectMapper mapper = new ObjectMapper();
mapper.setSerializationInclusion(Include.NON_NULL);
System.out.println("\n\n----------REQUEST-----------");
StringWriter sw = new StringWriter();
mapper.writeValue(sw, jsonObject);
// Want pretty version of sw.toString() here