(참고만... ... )
@RequestParam
@RequestParam: request로부터 query 파라미터 값을 접근하기 위함
@RequestMapping(value="/order", method = RequestMethod.GET) ... @RequestParam(value="id", required=true) String id
GET: http://localhost:8081/order?id=1
optional: defaultValue, name, required, value
@PathVariable
@PathVariable: 하나 또는 그 이상의 URL 값이 파라미터로 작동하는 동적URL을 처리함
@RequestMapping(value="/order/{id}", method = RequestMethod.GET) ... @PathVariable("id") String id
GET: http://localhost:8081/order/1
'■ Spring + Boot' 카테고리의 다른 글
[Spring] 연습한 프로젝트 - 구조 (0) | 2020.08.31 |
---|---|
[Spring] Mapping할 때, "한 프로젝트"에 똑같은 것으로 하지 말자,,,,에러남... (0) | 2020.08.30 |
[Spring] @pathVariable 어노테이션 (0) | 2020.08.30 |
[Spring] CommandLineRunner(커맨드라인러너) - 초기 작업 주기 (0) | 2020.08.29 |
[Spring] 구조 1차, 구조 2차 (연습한거) - 코드 (0) | 2020.08.28 |