在Roo中设置未捕获的异常处理程序的响应状态

时间:2013-11-15 12:58:00

标签: java-ee spring-mvc spring-roo jspx

我有一个标准mvc设置的Roo应用程序。

如果我从我的控制器中抛出异常,我会在客户端获得很好的渲染堆栈跟踪和状态代码200。

我发现它由web.xml中定义的错误页面处理为:

<error-page>
    <exception-type>java.lang.Exception</exception-type>
    <location>/uncaughtException</location>
</error-page>

uncaughtException.jspx是:

<div xmlns:c="http://java.sun.com/jsp/jstl/core" xmlns:fn="http://java.sun.com/jsp/jstl/functions" xmlns:util="urn:jsptagdir:/WEB-INF/tags/util" xmlns:spring="http://www.springframework.org/tags" xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0">
  <jsp:directive.page contentType="text/html;charset=UTF-8" />
  <jsp:output omit-xml-declaration="yes" />
  <spring:message var="title" code="error_uncaughtexception_title" htmlEscape="false" />
  <util:panel id="title" title="${title}">
    <h2>${fn:escapeXml(title)}</h2>
    <p>
      <spring:message code="error_uncaughtexception_problemdescription" />
    </p>
    <c:if test="${not empty exception}">
      <p>
        <h4>
          <spring:message code="exception_details" />
        </h4>
        <spring:message var="message" code="exception_message" htmlEscape="false" />
        <util:panel id="_message" title="${message}" openPane="false">
          <c:out value="${exception.localizedMessage}" />
        </util:panel>
        <spring:message var="stacktrace" code="exception_stacktrace" htmlEscape="false" />
        <util:panel id="_exception" title="${stacktrace}" openPane="false">
          <c:forEach items="${exception.stackTrace}" var="trace">
            <c:out value="${trace}" />
            <br />
          </c:forEach>
        </util:panel>
      </p>
    </c:if>
  </util:panel>
</div>

如何将响应代码更改为不同于200的内容?

这可能以某种方式在uncaughtException.jspx中设置它吗?

1 个答案:

答案 0 :(得分:0)

通过在defaultStatusCode的{​​{1}}上设置org.springframework.web.servlet.handler.SimpleMappingExceptionResolver来解决此问题。

示例:

webmvc-config.xml