티스토리 뷰
728x90
1. 가장 기본적으로 Controller에서 request parameter를 받는 방법은 HttpServletRequest를 사용하는 것이다.
@Controller
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";
}
2. 두 번째 방법은 @RequestParam("name")을 사용하는 방법이다. name은 당연히 form의 name에 들어있는 값이 된다.
@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 - @RequestMapping (0) | 2020.04.22 |
---|---|
Spring : Web MVC with XML Configuration - Static 파일 사용하기 (0) | 2020.04.22 |
Spring : Web MVC with XML configuration (0) | 2020.04.22 |
Spring : Configuration with Java Config Class - 설정 및 외부 properties 에서 읽어오기 (0) | 2020.04.22 |
Spring : Configuration with XML configuration + Spring Annotations + @Qualifier (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
- mapping
- hibernate
- Rest
- 스프링부트
- 로그인
- Security
- 스프링
- WebMvc
- 상속
- Many-To-Many
- form
- 외부파일
- Validation
- 매핑
- RestTemplate
- 설정
- one-to-many
- login
- 하이버네이트
- 설정하기
- XML
- Angular
- one-to-one
- Spring Security
- jsp
- Spring
- 자바
- MYSQL
- spring boot
250x250