1

下面是我的spring配置文件:

<bean class="com.web.handler.CustomSimpleMappingExceptionResolver" >
    <property name="exceptionMappings">
        <props>              
            <prop key="java.lang.Throwable">error</prop>
        </props>
    </property>
</bean>

班级CustomSimpleMappingExceptionResolver

public class CustomSimpleMappingExceptionResolver extends SimpleMappingExceptionResolver{
    @Override
    public ModelAndView resolveException(HttpServletRequest request,
            HttpServletResponse response, Object handler, Exception ex) {

    if(int a = 1)
        return new ModelAndView("ViewName1");
    else
        return new ModelAndView("ViewName2");
    }

web.xml的没有错误页面。我希望根据我的逻辑显示不同的视图resolveException()

在404 的情况下不会调用CustomSimpleMappingExceptionResolver课堂。resolveException()

4

2 回答 2

1

声明可能不正确;使用地图而不是属性。

<bean class="org.springframework.web.servlet.handler.SimpleMappingExceptionResolver">
<property name="exceptionMappings">
  <map>
    <entry key="DataAccessException" value="data-error" />
    <entry key="com.stuff.MyAppRuntimeException" value="app-unchecked-error" />
    <entry key="com.stuff.MyAppCheckedException" value="app-checked-error" />
  </map>
</property>
<property name="defaultErrorView" value="general-error"/>
</bean>

此外,我不确定 SimpleMappingExceptionResolver 是否处理查找处理程序时引发的错误,而是处理从内部处理程序引发的错误。也就是说,我不确定 404 是否能以这种方式捕获。

如果您在 web.xml 中放置一个错误处理程序,它将返回到您的 servlet,您可以在其中以任何您喜欢的方式处理它。

于 2011-11-17T20:56:39.810 回答
1

在 web.xml 中设置错误页面

<error-page>
    <error-code>404</error-code>
    <location>/error.html</location>
</error-page>

您的错误页面将在打开后立即重定向。

<html>
    <head>
    <title>Your Page Title</title>
    <meta http-equiv="REFRESH" content="0;url=error.htm">
    </head>
    <body>
    </body>
</html>

There should be a request mapping in your controller to handle error.htm request.

@RequestMapping(value={"/error.htm"})
    ModelAndView routToErrorHandler(HttpServletRequest request, HttpServletResponse response) {
//any logic for your themes
}
于 2011-11-23T14:10:52.467 回答