decorator 작성
작업 개요
sitemesh 태그 를 포함하는 JSP 파일로 작성
예제 코드

<%@ page contentType="text/html; charset=utf-8"%>

<%@ taglib uri="http://www.opensymphony.com/sitemesh/decorator"
 prefix="decorator"%>
<%@ taglib uri="
http://www.opensymphony.com/sitemesh/page" prefix="page"%>

<html>
<head>
<title>아티클 관리 시스템(AMS) v 0.1</title>
<link rel="stylesheet" type="text/css" href="/ams/css/top.css" />
<decorator:head />
</head>
<body onload="<decorator:getProperty property="body.onload" />">
<table id="boundary" name="boundary">
 <tr id="banner" name="banner">
  <td>
   <%@ include file="/include/menu.jsp" %>
  </td>
 </tr>
 <tr id="bodyarea" name="bodyarea">
  <td><decorator:body /></td>
 </tr>
</table>
</body>
</html>