我有一个标准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
中设置它吗?
答案 0 :(得分:0)
通过在defaultStatusCode
的{{1}}上设置org.springframework.web.servlet.handler.SimpleMappingExceptionResolver
来解决此问题。
示例:
webmvc-config.xml