@RequestBody
-
Spring MVC (Http 요청 처리)백엔드/SPRING MVC 2024. 9. 1. 21:32
HTTP 요청 파라미터 방법GET - 쿼리 파라미터URL 쿼리 파라미터에 데이터를 포함해서 전달POST - HTML FormContent-Type : application/x-www-form-urlencoded메시지 body 부분에 쿼리 파라미터 형식으로 전달 ( ex) username=hello&age=20 )HTTP message bodyHTTP API 사용 (JSON, XML, TEXT ) HTTP 요청 파라미터request.getParameter("[변수]")String username = request.getParameter("username"); @RequestParam("[변수]")public String Example( @RequestParam("username") String member..