时间格式化与json时间格式化

1、后台传递数组到前端,前端通过EL表达式显示数据,若传递的有时间类型的数据,前端页面显示的时间是带英文的时间格式,为方便查看,需要转化为类似 2018-07-08 12:01:01 这样的格式,可采用:

<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
<fmt:formatDate pattern="yyyy-MM-dd HH:mm:ss" value="${users.exam.preDate }" />

2、通过ajax来实现页面的异步刷新,从后端接收的数据类型往往是json数据类型,而解析出来的时间格式往往是“1453920000”这样的毫秒数,要正常显示,可采用在实体类上添加时间格式化的注解

@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss")
    private Date preDate;

你可能感兴趣的:(时间格式化与json时间格式化)