返回json时间格式化,忽略处理

参考文档
http://blog.csdn.net/pinebud55/article/details/51454997

//对象的定义中添加注解
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
private Date crtdate;

public class user {
private String name;
@JsonIgnore
private int age;
}

你可能感兴趣的:(返回json时间格式化,忽略处理)