1. Ver 3.x
2. Ver 4.x
3. 동작원리
① http://localhost:8080/admin/board/notice/list 접속
② 글쓰기 버튼 클릭
<a class="btn-text btn-default" href="reg">글쓰기</a>
③ http://localhost:8080/admin/board/notice/reg 로 넘어감 (GET Method)
④ 제목, 내용 작성 후 등록 버튼 클릭
<form action="reg" method="post" enctype="multipart/form-data">
⑤ http://localhost:8080/admin/board/notice/reg 로 넘어감 (POST Method)
⑥ reg Controller 메서드에서 작업 수행 후 list.jsp 로 redirect
4. Tiles 정의