up vote 1 down vote favorite
1
share [g+] share [fb]

By default, Tomcat sends some HTML content back to the client if it encounters something like an HTTP 404. I know that via web.xml an <error-page> can be configured to customize this content.

However, I'd just like for Tomcat to not send anything in terms of response content (I'd still like the status code, of course). Is there any way to easily configure this?

I'm trying to avoid A) explicitly sending empty content on the response stream from my Servlet, and B) configuring custom error pages for a whole bunch of HTTP error statuses in my web.xml.

For some background, I'm developing an HTTP API and am controlling my own response content. So for an HTTP 500, for example, I'm populating some XML content on the response containing error information. For situations like an HTTP 404, the HTTP response status is sufficient for clients, and the content tomcat is sending is unnecessary. If there's a different approach, I'm open to hearing it.

Edit: After continued investigation, I still can't find much in the way of a solution. If someone can definitively say this is not possible, or provide a resource with evidence that it will not work, I'll accept that as an answer and try and work around it.

link|improve this question

79% accept rate
I'm not quite sure what you are asking here. So you have a servlet that generates response codes instead of the 200 default? Are you overloading the meaning of http status codes as application status codes? – Gary Apr 27 '09 at 17:15
I'm not overloading the meaning of the codes, I'm using them as they're intended. This is for a REST API - as an example, if someone performs a GET on a certain resource in my API, and I don't find it, I'm setting the response status to 404. If I have some sort of strange error, I set a status of 500 and provide some error content in the response. But I want exclusive control over this content - I don't want Tomcat returning HTML or anything else. If content is to be returned, I want my Servlet to be the one doing it. – Rob Hruska Apr 27 '09 at 18:00
feedback

5 Answers

up vote 1 down vote accepted

http://java.sun.com/developer/EJTechTips/2003/tt0114.html in an article that describes how to catch Exceptions or error codes and choose a static page, jsp or Servlet to do the output

From comments:

You can have one servlet handle all of your errors like <error-page><location>/myErrorServlet</location></error-page>. That is less than 100 chars to configure every error. In addition if you are not finding your resource forward to the same servlet. One servlet to customize all of your response.

link|improve this answer
I'm not particularly wanting to define static HTML/JSP, because that leads me back to having to configure <error-page> for any error that I want to not send content. I'm really just looking for a global configuration, if one exists. – Rob Hruska Apr 27 '09 at 20:27
You need to RTFA you can have one servlet handle all of your errors like <error-page><location>/myErrorServlet</location></error-page>. That is less than 100 chars to configure every error. In addition if you are not finding your resource forward to the same servlet. One servlet to customize all of your response. – Clint Apr 29 '09 at 3:35
Your link is broken, but I ended up finding an example. To be fair, most of the documentation for this usually describes the value for <location> as "error page" or "html", which is a bit misleading since it can be a Servlet. But your answer pointed me in the right direction. – Rob Hruska Mar 11 '10 at 19:12
feedback

If you do not want tomcat to show an error page, then do not use sendError(...). Instead use setStatus(...).

e.g. if you want to give a 405 response, then you do

response.setStatus(HttpServletResponse.SC_METHOD_NOT_ALLOWED);      
response.getWriter().println("The method " + request.getMethod() + 
   " is not supported by this service.");

Also remember not to throw any Exceptions from your servlet. Instead catch the Exception and, again, set the statusCode your self.

i.e.

protected void service(HttpServletRequest request,
      HttpServletResponse response) throws IOException {
  try {

    // servlet code here, e.g. super.service(request, response);

  } catch (Exception e) {
    // log the error with a timestamp, show the timestamp to the user
    long now = System.currentTimeMillis();
    log("Exception " + now, e);
    response.setStatus(HttpServletResponse.SC_INTERNAL_SERVER_ERROR);
    response.getWriter().println("Guru meditation: " + now);
  }
}

of course, if you do not want any content, then just don't write anything to the writer, just set the status.

link|improve this answer
Using print() instead of println() which causes additional new line char. This especially useful if you are sending the empty string, with Content-Length: 0 – mrCoder Sep 28 '11 at 8:55
feedback

Why not just configure the <error-page> element with an empty HTML page?

link|improve this answer
I mentioned in my question that I would like to avoid configuring error pages (even if they're empty) for a bunch of statuses. If it's my only option then I guess I'll have to - but I'm looking for alternatives. – Rob Hruska Apr 27 '09 at 18:02
feedback

As Heikki said, setting the status instead of sendError() causes the Tomcat not touch the response entity/body/payload.

If you only want to send the response headers without any entity, like in my case,

response.setStatus(HttpServletResponse.SC_UNAUTHORIZED);
response.setContentLength(0);

does the trick. With Content-Length: 0, the print() will have no effect even if used, like:

response.setStatus(HttpServletResponse.SC_UNAUTHORIZED);
response.setContentLength(0);
response.getWriter().print("this string will be ignored due to the above line");

the client receives something like:

HTTP/1.1 401 Unauthorized
Server: Apache-Coyote/1.1
Content-Type: text/html;charset=utf-8
Content-Length: 0
Date: Wed, 28 Sep 2011 08:59:49 GMT

If you want to send some error message, use the setContentLength() with message length (other than zero) or you can leave it the server

link|improve this answer
feedback

The quick, slightly dirty, but easy way of stopping Tomcat from sending any error body is to call setErrorReportValveClass against the tomcat host, with a custom error report valve which overrides report to do nothing. ie:

public class SecureErrorReportValve extends ErrorReportValve {

@Override
protected void report(Request request,Response response,Throwable throwable) {
}

}

and set it with:

  ((StandardHost) tomcat.getHost()).setErrorReportValveClass(yourErrorValveClassName);

If you want to send your message, and just think Tomcat shouldn't mess with it, you want something along the lines of:

@Override
protected void report(final Request request, final Response response, final Throwable throwable) {
    String message = response.getMessage();
    if (message != null) {
        try {
            response.getWriter().print(message);
            response.flushBuffer();
        } catch (IOException e) {
        }
    }
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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