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