PathParam
-
[Spring] @PathVariable 기본값 설정하기programming/Spring 2020. 12. 6. 22:00
@Controller에서 파라미터를 받는 방법은 아래와 같은 방법들이 있다. 1. /API_NAME?key1=val1 2. /API_NAME/{value1} 선호하는 방식대로 하면 되겠지만, 여기서는 2번과 관련된 글이다. 2번과 같은 방식으로 받기 위해서는 @Controller에서 @PathVariable을 사용하면 된다. @GetMapping("/test/{cnt}") public String methodName(@PathVariable int cnt){ // TODO.. return "test"; } 위와 같이 코드를 작성하면, "localhost:8080/test/3"과 같이 호출했을 때 cnt 값이 3이 된다. 하지만, 만약에 "localhost:8080/test"와 같이 변수를 넣어주지 않으면..