@JsonFormat(shape=JsonFormat.Shape.STRING, pattern="yyyy-MM-dd")不知为什么无效 解决方案
//一个map的集合
List<Map<String, Object>> select = StudentDao.select();
System.out.println(select);
ObjectMapper om = new ObjectMapper();
//格式化
om.setDateFormat(new SimpleDateFormat("yyyy-MM-dd"));
System.out.println(om.writeValueAsString(select));