templates를 수정 하는 방법!
* HTML5로 변경을 원하면 JSP 템플릿을 수정하면 됩니다.
-> new로 생성!
<%@ page language="java" contentType="text/html; charset=${encoding}"
pageEncoding="${encoding}"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="${encoding}">
<title>Insert title here</title>
</head>
<body>
${cursor}
</body>
</html>