GET, POST 매핑 분리
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 정의
Author And Source
이 문제에 관하여(GET, POST 매핑 분리), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@codren/GET-POST-매핑-분리저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)