在jsp页面中,引入
<%@taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
使用方式
<c:forEach items="${requestScope.users}" var="user">
${user.id}-----${user.name}-----${user.age}-----<fmt:formatDate pattern="yyyy/MM/dd" value="${user.bir}"/> <br/>
</c:forEach>