728x90
반응형
spring @reqeustparam @requestbody
-
@RequestParam ,@RequestBody 차이점 완전정복Spring 2022. 11. 3. 21:41
회사 동료중 한분이 계속 파라미터가 안넘어 온다고해서 확인해보니 postman에서 json을 보내는데 스프링에서 @RequestParam 으로 받고 있었다.. 이번일 계기로 RequestParam 과 RequestBody에 대한 차이점을 간단히 정리해보고자한다. @RequestParam requestParam에 대한 doc 문서에 설명은 아래와 같다. 더보기 Annotation which indicates that a method parameter should be bound to a web request parameter. Supported for annotated handler methods in Servlet and Portlet environments. 위 말을 해석해보면 RequestParam ..