Standard Design Practice for Backend

DO NOT directly send response body content. Instead, wrap it in a ResponseEntity object, which represents the entire HTTP response (status code, header/s, body).

1.1 Introduction to ResponseEntity

1.2 o.s.http.ResponseEntity<T>