I am creating my own logging filter implementing ContainerRequestFilter and ContainerResponseFilter. I want to print the request entity only if the response failed eg. Response status code as 404, 500.
But I get empty string when I do request.getEntity() or request.getEntityInputStream() in the filter method of ContainerResponseFilter();
It looks like jersey removes the content after reading it at resource level.