* Path Parameters
- Spring Boot에서 사용하는 Path Parameters는 HTTP 요청의 URL 경로에 포함된 변수입니다.
- Path Parameters는 요청을 처리하기 위해 필요한 정보를 제공하는 데 사용됩니다.
예를 들어, 다음과 같은 URL이 있다고 가정합니다.
http://localhost:8080/users/1
- 이 URL에서 /users는 경로 패턴이고 1은 Path Parameter입니다. 이 Path Parameter는 users 테이블에서 ID가 1인 사용자를 식별하는 데 사용됩니다.
- Spring Boot에서 Path Parameters를 사용하려면 @PathVariable 애노테이션을 사용합니다. @PathVariable 애노테이션은 Path Parameter를 매핑하는 데 사용되는 변수에 적용됩니다.
* 예제 >
// /hello-world/path-variable/{name} -> /hello-world/path-variable/kitae
@GetMapping("/hello-world/path-variable/{name}")
public HelloWorldBean helloWorldPathVariable(@PathVariable String name) {
return new HelloWorldBean(String.format("Hello World, %s", name));
}
* 결과>