<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>
'자바 > JAVA...Spring' 카테고리의 다른 글
Spring 3.2 & MyBatis] 웹 브라우저에서 확인 (0) | 2015.12.02 |
---|---|
Spring 3.2 & MyBatis] 공통 jsp (0) | 2015.12.02 |
Spring 3.2 & MyBatis] 컨트롤러 작성 (0) | 2015.11.30 |
Spring 3.2 & MyBatis ) Spring MVC용 설정파일 (0) | 2015.11.27 |
Spring 3.2 & MyBatis ) ApplicationContext.xml(4) (0) | 2015.11.27 |