Change `return ResponseEntity.ok().eTag(etag).build(body);` to `return ResponseEntity.ok().eTag(etag).body(body);` for both WebMVC and WebFlux.
Change
return ResponseEntity.ok().eTag(etag).build(body);toreturn ResponseEntity.ok().eTag(etag).body(body);for both WebMVC and WebFlux.