GET, POST 매핑 분리

3007 단어 SpringSpring

Section 1. GET, POST 매핑 분리

1. Ver 3.x

  • RequestMapping Annotation 의 method 속성을 이용하여 구분




2. Ver 4.x

  • GetMapping, PostMapping Annotation 으로 구분




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 정의

좋은 웹페이지 즐겨찾기