将对象转化为json格式的时候,日期类型数据的处理

String s = JSONObject.toJSONString(student)

如果student中有某个属性是Date日期格式的,在经过上述转换以后,日期会变成一长串数字,此时需要对日期进行格式化

String s = JSONObject.toJSONString(student, SerializerFeature.WriteDateUseDateFormat)

SerializerFeature.WriteDateUseDateFormat的默认格式是

yyyy-MM-dd HH:mm:ss

此时字符串中的日期格式就已经变成了格式化后的格式

你可能感兴趣的:(spring,boot,spring,java)