『 JSP 샘플 작성 』
<소스코드>
<%-- Spring커스텀 태그 정의 --%>
<%@ taglib uri="http://www.springframework.org/tags" prefix="spring" %>
<%@ taglib uri="http://www.springframework.org/tags/form" prefix="form" %>
<spring:hasBindErrors name="sampleCommand">
<div>
<font color="red"><spring:message code="error.input" /></font>
<%-- 공통 에러메시지 표시 --%>
<font color="red"><c:forEach items="${errors.globalErrors}" var="error">
<spring:message message="${error}" /><br/> </c:forEach></font>
</div>
</spring:hasBindErrors>
'자바 > JAVA...Spring' 카테고리의 다른 글
Spring 3.2 & MyBatis] 에러 메시지 정의 (0) | 2015.12.18 |
---|---|
Spring 3.2 & MyBatis] JSP 샘플 작성(2) (0) | 2015.12.18 |
Cross-Browsing (0) | 2015.12.18 |
XMLHttpRequest 객체 생성 (0) | 2015.12.18 |
XMLHttpRequest의 개요 (0) | 2015.12.18 |