https://devlog-wjdrbs96.tistory.com/182
https://a1010100z.tistory.com/106
참고자료
ResponseEntity
- HTTP 정보들을 담아 전달하여 데이터(body), headers, Http status를 제어할 수 있는 클래스이다.
- HttpEntity(HTTP 요청 또는 응답에 해당하는 HttpHeader와 HttpBody를 포함하는 클래스) 클래스를 상속받아 구현한 클래스.(RequestEntity, ResponseEntity)
위의 코드는 생성자에 따라 body(문자열 부분), HttpStatus(HttpStatus.CREATED -> 201)에 대하여 파라미터를 넘겨주고 있다.
성공 시 "Created successfully" 문자열과 응답코드 201을 리턴한다.
'Back-end > Spring Boot' 카테고리의 다른 글
@RequestBody와 @ResponseBody (0) | 2021.10.07 |
---|---|
@RequestParam, @PathVariable, @RequestBody (0) | 2021.10.07 |
Spring Boot - REST API - 학습필요 (0) | 2021.10.07 |
Spring Boot 특징 (0) | 2021.10.06 |