[Spring]
https://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/http/ResponseEntity.html ResponseEntity(스프링 프레임워크 6.0.5 API) 본문, 헤더 및 원시 상태 코드가 있는 ResponseEntity를 만듭니다. docs.spring.io ResponseEntity Header + Body로 구성된 HttpEntity에 HttpStatusCode를 추가하여 기능을 확장한 클래스. ResponseEntity에서 T는 본문으로 입력되는 유형으로 볼 수 있습니다. 응답DTO @Getter @Setter @AllArgsConstructor public class ResponseDTO { public String message; } 응답 본문에 대한 정보를 포함하는 JAVA 클래스 개발 ResponseEntity … Read more