jackson

jackson的一些注解

  • 指定字段不返回 @JsonIgnore
  • 指定日期格式 @JsonFormat(pattern"yyyy-MM-dd hh:mm:ss", locale="zh", timezone="GMT+8")
  • 指定字段为空时不返回 @JsonInclude(Include.NOT_NULL)
  • 指定别名 @JsonProperty("otherName")

other todo

原文地址:https://www.cnblogs.com/scp-166/p/11942087.html