Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 보험
- 프로그래밍
- 뇌출혈
- 인출수수료
- 프론트엔드
- javascript
- 수수료
- 교보생명
- 변환
- 보험료
- 중도인출
- PythonProgramming
- 납입
- 코딩
- 웹개발
- 사망
- Java
- 가입
- python
- 특약
- 심장질환
- 급성심근경색증
- 추가납입
- 문자열
- 파이썬
- jQuery
- 교보
- 리스트
- 자바스크립트
- Vue.js
Archives
- Today
- Total
SeouliteLab
[Java/자바] Spring @RequestBody: HTTP 요청의 본문을 메서드 파라미터로 받기 본문
Spring 프레임워크에서 @RequestBody 어노테이션은 HTTP 요청의 본문을 메서드 파라미터로 전달받을 때 사용됩니다. 이 어노테이션을 사용하면 JSON, XML 또는 기타 형식의 요청 본문을 자바 객체로 변환할 수 있습니다. 이 글에서는 @RequestBody 어노테이션의 사용법과 예제 코드를 통해 자세히 알아보겠습니다.
1. 기본적인 @RequestBody 사용법
가장 간단한 형태의 @RequestBody 어노테이션은 다음과 같이 컨트롤러 메서드의 파라미터에 적용됩니다.
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class MyController {
@PostMapping("/message")
public String handleMessage(@RequestBody String message) {
return "Received message: " + message;
}
}
위의 예제에서는 /message
경로로의 POST 요청의 본문을 String
형태로 받아와서 메서드의 파라미터로 사용합니다.
2. JSON 요청 본문을 객체로 변환하기
@RequestBody 어노테이션을 사용하면 JSON 요청 본문을 자바 객체로 변환할 수 있습니다.
예제 1: JSON 요청 본문을 객체로 변환하기
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class MyController {
@PostMapping("/user")
public String createUser(@RequestBody User user) {
// 사용자 생성 로직
return "User created: " + user.getName();
}
}
위의 예제에서는 /user
경로로의 POST 요청의 본문을 User
객체로 변환하여 사용합니다.
3. 예제 코드
다음은 @RequestBody 어노테이션을 사용한 예제 코드입니다.
예제 1: 기본적인 @RequestBody 사용법
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class MyController {
@PostMapping("/message")
public String handleMessage(@RequestBody String message) {
return "Received message: " + message;
}
}
예제 2: JSON 요청 본문을 객체로 변환하기
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class MyController {
@PostMapping("/user
")
public String createUser(@RequestBody User user) {
// 사용자 생성 로직
return "User created: " + user.getName();
}
}
4. 결론
이상으로 Spring의 @RequestBody 어노테이션에 대한 자세한 설명과 예제 코드를 살펴보았습니다. @RequestBody 어노테이션을 사용하여 HTTP 요청의 본문을 메서드의 파라미터로 간편하게 받아올 수 있습니다.
'프로그래밍' 카테고리의 다른 글
[Java/자바] Spring @ResponseBody: HTTP 응답 데이터 직접 제어하기 (0) | 2024.03.12 |
---|---|
[Java/자바] Spring @ModelAttribute: 메서드 파라미터와 모델 속성의 바인딩 (0) | 2024.03.12 |
[Java/자바] Spring @PostMapping: HTTP POST 요청 처리하기 (0) | 2024.03.12 |
[Java/자바] Spring @RestController: RESTful 웹 서비스를 위한 컨트롤러 > (0) | 2024.03.12 |
[Java/자바] Spring @GetMapping: HTTP GET 요청 처리하기 (0) | 2024.03.12 |