728x90
반응형
[Spring] ResponseEntity 란?
Spring 에서 HttpRequest 에 대해 제공하는 클래스
HttpBody, HttpHeader, HttpStatus 을 담고 있음.
getMember 를 호출하면 member 데이터 (JSON) 와 HttpStatus.OK (200) 을 클라이언트에서 받게 됨.
@RestController
public class MemberController {
@GetMapping("/member/{id}")
public ResponseEntity getMember(@PathVariable("id") String id) {
...
...
return new ResponseEntity(member, HttpStatus.OK);
}
}
Reference
'Spring' 카테고리의 다른 글
spring transactional readOnly 성능 관련 정리 (0) | 2021.08.23 |
---|---|
spring runtimeException rollback 여부 (0) | 2021.04.09 |
Spring Async 처리 (@Async) (0) | 2021.02.21 |
@Component, @Repository, @Service, @Controller 설명 및 차이점 (0) | 2020.12.25 |
Spring filter 와 interceptor 설명 (0) | 2020.12.23 |
댓글