반응형
SMALL
[목차여기]
내가 맨날 헷갈려서 정리해놓는 어노테이션 3대장 😤
@PathVariable
@GetMapping("/api/user/{nickname}/exists")
public ApiResponse<?> isExists(@PathVariable String nickname){
}
사용 예시
https://localhost:8080/api/user/sumin/exists
@RequestParam
@GetMapping("/api/auth/kakao/login")
public ApiResponse<?> login(@RequestParam(value = "code") String code){
}
사용 예시
https://localhost:8080/api/auth/kakao/login?code={code값}
@RequestBody
@GetMapping("/api")
public ApiResponse<?> isExists(@RequestBody DTO dto){
}
사용 예시
반응형
LIST
'Framework > Spring' 카테고리의 다른 글
[Springboot] keystore.p12 는 도대체 어떻게 사용하는 걸까.. (0) | 2024.11.22 |
---|---|
[트러블슈팅] Springboot - Swagger가 업데이트 되지 않을 때 (0) | 2024.11.11 |
[Springboot] Swagger2.0 적용하는 법 (+ JWT 토큰 있/없는 경우) (0) | 2024.11.08 |
[Spring] ModelAndView, Model - MVC, Observer(옵저버) 패턴 (2) | 2024.01.24 |