티스토리 뷰
ResponseEntity 는 헤더와 바디, 상태 코드로 구성되어 있고 http 응답을 나타낼 때 사용 한다.
Http 응답을 편하게 구성하여 보낼 떄 사용 하는 클래스 이다.
ResponseEntity 는 HttpEntity( http 헤더, 바디 ) 를 상속 받았고, HttpStatus 상태 코드를 추가 하였다.
HttpEntity는 HTTP 요청, 응답을 나타내기 위한 entity로 헤더와 바디로 구성되어 있다.
return ResponseEntity.ok().body(userVO);
return ResponseEntity.badRequest().body(userVO);
return ResponseEntity.noContent().body(userVO);
class에서 함수를 이용해 상태코드, 헤더, 바디를 쉽게 생성 가능하다.
public static BodyBuilder badRequest() {
return status(HttpStatus.BAD_REQUEST);
}
public static BodyBuilder status(HttpStatus status) {
Assert.notNull(status, "HttpStatus must not be null");
return new DefaultBuilder(status);
}
public DefaultBuilder(Object statusCode) {
this.statusCode = statusCode;
}
@Override
public <T> ResponseEntity<T> body(@Nullable T body) {
return new ResponseEntity<>(body, this.headers, this.statusCode);
}
badRequest를 보면, 상태 코드를 저장한 builder를 리턴해줘서 body를 생성하며 ResponseEntity 를 생성한다.
참조
'Spring' 카테고리의 다른 글
[ Springboot ] Jackson 라이브러리와 POJO, JSON 변환 (0) | 2020.05.27 |
---|---|
[ Springboot ] Springboot 내장 tomcat 버전 (2) | 2020.05.27 |
[ Springboot ] 설정파일(properties, yml) 암호화 (0) | 2020.05.22 |
[ Springboot ] 주기적으로 실행 되는 Schedule 기능 사용하기 (0) | 2020.05.20 |
[ Spring ] Http header max size (0) | 2020.05.19 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- apm
- error
- Container
- Postman
- scala
- mac
- Git
- intellij
- Spark
- logstash
- Log
- tomcat
- gradle
- AWS
- elasticsearch
- Java
- spring
- Kibana
- docker
- Filter
- Index
- JSON
- Size
- plugin
- maven
- JPA
- Linux
- SpringBoot
- install
- spring boot
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함