반응형
@pathvariable
URL 경로에 변수를 넣어주는 어노테이션
@ReuqestMapping("[경로]/[변수이름]")
@Controller
public class HomeController {
@RequestMapping("/student/{studentId}")
public String student(@PathVariable String studentId, Model model) {
model.addAttribute("studentId", studentId);
return "student";
}
}
주의
- null이나 공백값
- Spring 에서 @PathVariable 사용하여 값을 넘겨받을때 값에 . 가 포함되어 있으면
.포함하여 그뒤가 잘려서 들어온다는 것!
반응형