时间显示成一串阿拉伯数字

若页面时间参数显示一串阿拉伯数字,但数据库存入的时间数据正常.

如图所示:

解决方案:

在你的pojo类上添加一个注解就可以了.

@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private Date gmtCreate=new Date();
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private Date gmtUpdate;
结果如下:



posted @ 2017-11-08 21:36  龙芳伟  阅读(1527)  评论(0编辑  收藏  举报