摘要: 在打印日志或其他操作的时候,需要将某个对象转为jsonString,其中日期格式我们希望使用自定义的格式化后的格式,方便查看及后续处理 Test test = new Test(); test.setDate(new Date()); JSON.toJSONStringWithDateFormat( 阅读全文
posted @ 2020-08-06 20:37 天邪小鬼 阅读(3466) 评论(0) 推荐(1) 编辑
摘要: 当我们在使用json格式传递数据的时候,别人传给我们的字段名和我们的字段名不一致,可以使用 FastJson 的 @JSONField 注解 @Data public class TestModel { @JSONField(name = "status_message") private Stri 阅读全文
posted @ 2020-08-06 20:31 天邪小鬼 阅读(913) 评论(0) 推荐(0) 编辑