Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

1 Answer

up vote 1 down vote accepted

It needs to read the entity from the input stream, which is not resettable (the infrastructure involved doesn't keep a copy of it). So, as the input stream is read previously, it is supposed to be have nothing when you call request.getEntityInputStream() in the class that implements ContainerResponseFilter. LoggingFilter does the work for you. But as you mentioned, if you want to customize it, then you need write an implementation similar to that one, with added code to customize logging of course.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.