`

spring mvc Could not resolve view 返回500问题

阅读更多
问题:
spring mvc找不到view时,返回http 500错误。

不是应该是404错误么?

后来查源码发现,是因为项目里用了多个HandlerMapping,其中包含了SimpleUrlHandlerMapping,而且设置了defaultHandler=UrlFilenameViewController,因此即使模板文件不存在,也会继续执行下去,直到抛出javax.servlet.ServletException: Could not resolve view with name 'xxx' in servlet with name 'springServlet',否则的话,spring mvc找不到对应的handler时,会设置http状态为404。

具体设置404的方法:
protected void noHandlerFound(HttpServletRequest request, HttpServletResponse response) throws Exception {
        if(pageNotFoundLogger.isWarnEnabled()) {
            pageNotFoundLogger.warn("No mapping found for HTTP request with URI [" + getRequestUri(request) + "] in DispatcherServlet with name \'" + this.getServletName() + "\'");
        }

        response.sendError(404);
    }


解决办法么,当前是去掉defaultHandler,但是随之而来的问题,就是以前直接根据模板文件查找的url就不能用了,都需要对应的handler。
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics