error_message.jsp
486 字节
<%@ page language="java" contentType="text/html; charset=utf-8"
pageEncoding="utf-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
<div style="width: 100%;color: red;padding-top: 20px;">
<ul>
<c:forEach var="vo" items="${errors}" >
<li style="clear: left;"> ${vo.msgContent }</li>
</c:forEach>
</ul>
</div>