티스토리 뷰
728x90
1. DispatcherServlet이 경로 매핑을 할 때 사용하는 Annotation이 @RequstMapping이다.
1-1 예전엔 그냥 @RequestMapping("경로", 메소드) 방식으로 사용했다.
1-2 현재는 REST 덕분에 @GetMapping("경로") 형식의 Post, Delete, Put 등의 지정방식을 많이 사용한다.
1-3 클래스 level의 uri 분기는 @RequestMapping, 메소드 level의 uri 구분은 @GetMapping 방식을 많이 쓴다.
1-4 아래는 '/funny/showForm' 의 경로에 접근할 경우의 예시이다.
import javax.servlet.http.HttpServletRequest;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
@RequestMapping("/funny")
public class HelloWorldContoller {
@GetMapping("/showForm")
public String showForm() {
return "helloworld-form";
}
@GetMapping("/processForm")
public String processForm(HttpServletRequest request, Model model) {
String name = request.getParameter("studentName");
model.addAttribute("name", name.toUpperCase());
return "helloworld";
}
// @GetMapping("/processForm")
// public String processForm(@RequestParam("studentName") String name, Model model) {
// model.addAttribute("name", name.toUpperCase());
// return "helloworld";
// }
}
728x90
'Spring > Spring Basic' 카테고리의 다른 글
Spring : Web MVC - Form Tags, C Tags 사용하기 bootstrap JSP template (0) | 2020.04.23 |
---|---|
Spring : JSP with bootstrap template - 부트스트랩을 사용하는 JSP 껍데기 (0) | 2020.04.23 |
Spring : Web MVC with XML Configuration - Static 파일 사용하기 (0) | 2020.04.22 |
Spring : Web MVC - Request parameter 받기 (0) | 2020.04.22 |
Spring : Web MVC with XML configuration (0) | 2020.04.22 |
댓글
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
- 도커 개발환경 참고
- AWS ARN 구조
- Immuability에 관한 설명
- 자바스크립트 멀티 비동기 함수 호출 참고
- WSDL 참고
- SOAP 컨슈머 참고
- MySql dump 사용법
- AWS Lambda with Addon
- NFC 드라이버 linux 설치
- electron IPC
- mifare classic 강의
- go module 관련 상세한 정보
- C 메모리 찍어보기
- C++ Addon 마이그레이션
- JAX WS Header 관련 stackoverflow
- SOAP Custom Header 설정 참고
- SOAP Custom Header
- SOAP BindingProvider
- dispatcher 사용하여 설정
- vagrant kvm으로 사용하기
- git fork, pull request to the …
- vagrant libvirt bridge network
- python, js의 async, await의 차이
- go JSON struct 생성
- Netflix Kinesis 활용 분석
- docker credential problem
- private subnet에서 outbound IP 확…
- 안드로이드 coroutine
- kotlin with, apply, also 등
- 안드로이드 초기로딩이 안되는 경우
- navigation 데이터 보내기
- 레이스 컨디션 navController
- raylib
TAG
- crud
- 외부파일
- spring boot
- Security
- one-to-one
- form
- one-to-many
- 하이버네이트
- mapping
- 설정
- Spring Security
- WebMvc
- 자바
- login
- XML
- Angular
- hibernate
- Many-To-Many
- 설정하기
- MYSQL
- 스프링
- 스프링부트
- RestTemplate
- Spring
- Rest
- 매핑
- 로그인
- jsp
- 상속
- Validation
250x250