vote up 0 vote down star
1

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.

flag

67% 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 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 at 18:00

3 Answers

vote up 1 vote down

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

link|flag
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 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 at 3:35
vote up 0 vote down

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

link|flag
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 at 18:02
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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