[Spring] - 스프링 자바 api RequestEntity, ResponseEntity 클래스 사용 방법
#스프링 자바 api RequestEntity, ResponseEntity 클래스 사용 방법 #RequestEntity -RequestEntity(T body, MultiValueMap headers, HttpMethod method, URI url, Type type) -Spring framework에서 제공하는 HttpEntity 클래스의 상속클래스입니다. -url 요청을 보낼 때 사용합니다. -header, body, method, url, type을 생성자 파라미터로 넘길 수 있습니다. #ResponseEntity -ResponseEntity(T body, MultiValueMap headers, HttpStatus status) -Spring framework에서 제공하는 HttpEntity 클..
2022. 6. 28.