공부/Spring
2021. 7. 11.
[Spring]Chapter 11 - 요청 매핑, 커맨드 객체, 리다이렉트, 폼 태그, 모델
Chapter 11 내용 @RequestMapping설정 요청 파라미터 접근 리다이렉트 개발 환경 구축 스프링 폼 태그 모델처리 요청 매핑 애노테이션을 이용한 경로 매핑 1. @Contlloer 요청 애노테이션 RequestMapping GetMapping PostMapping @Controller public class HelloController { @GetMapping("/hello") public String hello(Model model, @RequestParam(value = "name", required = false)String name) { model.addAttribute("greeting", "안녕하세요, " + name); System.out.println("hello"); ret..