/user/1/lecture
url에 있는 변수값
@GetMapping(path="/hello-world/path-variable/{name}")
public HelloWorldBean helloWorldPathVariable(@PathVariable String name) {
return new HelloWorldBean("Hello World");
}
위와 같은 컨트롤러가 있다고 가정하겠다
우리가 /hello-world/path-variable/이름
을 넣으면 Spring MVC는 '이름'을 @PathVariable String name
에 매핑시킨다