<JSP 정의(helloView.jsp)>

 

 

​<소스코드>

<%@ page language="java" trimDirectiveWhitespaces="true" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%-- ▼ taglib --%>
<%@ include file="/include/taglibs.inc.jsp"%>
<%-- ▲ taglib --%>
<html>
<head>
<title>Spring 3.0 MVC : Hello World</title>
</head>
<body>
<p>모델에 저장되어 있는 값을 읽기</p>
<ul>
    <li>message1=${message1}</li>
    <li>message1(커스텀 태그 이용)=<c:out value="${message1}" /></li>
    <li>message2=${message2}</li>
    <li>currentDate(포맷)=<fmt:formatDate value="${currentDate}" pattern="yyyy年MM月dd日" /></li>
</ul>
</body>
</html>

 

+ Recent posts