1:在实体类加注解
@DateTimeFormat(pattern="yyyy-MM-dd")
private Date stime ;
2:在前端页面引入jstl
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%><table border="1px"><tr> <th>注册时间</th> </tr> <tr><tr> <td><fmt:formatDate value="${s.stime}" pattern="yyyy-MM-dd HH:mm:ss"/> </td> </tr>
前端展示时间格式:2020-02-20 13:49:13