问题
我想向用户显示自定义错误页面。 Simeply把,<error-page>
放在web.xml上似乎不起作用。我可以猜出问题是什么,但我需要了解为什么它无法正常工作。
我的设置
我在spring mvc应用程序中的web.xml上设置了<error-page>
。以下是设置。
<servlet-mapping>
<servlet-name>appServlet</servlet-name>
<url-pattern>/</url-pattern>
<url-pattern>*.*</url-pattern>
<url-pattern>*.do</url-pattern>
</servlet-mapping>
<error-page>
<error-code>404</error-code>
<location>/error</location>
</error-page>
我的错误页面位于......
WEB-INF
└ views
└ Errorpages
└ ErrorPage.jsp
对于您的信息,我也尝试过以下这些内容,但这些都不起作用。
<error-page>
<error-code>404</error-code>
<location>/WEB-INF/views/Errorpages/ErrorPage.jsp</location>
</error-page>
<error-page>
<error-code>404</error-code>
<location>/views/Errorpages/ErrorPage.jsp</location>
</error-page>
<error-page>
<error-code>404</error-code>
<location>/Errorpages/ErrorPage.jsp</location>
</error-page>
<error-page>
<error-code>404</error-code>
<location>/ErrorPage.jsp</location>
</error-page>
<!-- Or tried those above without the .jsp that comes after ErrorPage -->
<!-- And also, tried those after moving the resources out of WEB-INF -->
第二次尝试
我查看了服务器日志,发现spring试图通过redirecion查找资源,所以我改变了我的计划并尝试通过Spring MVC
中的典型视图返回来实现这一目标。
我做了这个动作
@RequestMapping("/error")
public String throwsErrorPage(Locale locale, Model model) {
logger.info("Errorpage action..." + locale.getLanguage());
return "/Errorpages/ErrorPage";
}
我的预期部分正确,因为它成功地调用了该动作。我的服务器日志表明了这一点。
WARN : org.springframework.web.servlet.PageNotFound - No mapping found for HTTP request with URI [/notfound] in DispatcherServlet with name 'appServlet'
INFO : com.company.web.controller.HomeController - Errorpage action...ko
如您所见,我在网址上输入 notfound 生成了404错误,并且重定向到 / error ,正如我在网络中的<location>
上指定的那样。 XML。但它不会返回视图。
为了确保操作返回视图,我尝试更改操作的类型,如...
@RequestMapping("/error")
public ModelAndView throwsErrorPage(Locale locale, ModelAndView mv) {
logger.info("Errorpage action..." + locale.getLanguage());
return mv.setViewName("/Errorpages/ErrorPage");
}
但它也不起作用......
奇怪的事情
如果我通过localhost:8080/error
调用该操作,它肯定会调用该操作并返回预期的错误页面。好吧,通过在url或ajax上键入内容,重定向和典型请求之间应该存在一些差异。
我想知道的事情
<error-page>
配置正常工作?Spring
自动重定向与Spring MVC
中用户操作的典型请求之间的区别是什么? 答案 0 :(得分:1)
错误页面大小必须&gt; 1024字节
添加一些无用的错误页面进行测试。
添加此项以确保错误页面具有以下属性:[isErrorPage="true"]
答案 1 :(得分:0)
<error-page>
<exception-type>java.lang.Exception</exception-type>
<location>/error.jsp</location>
</error-page>
错误页面可能不会放入web-inf,移出并尝试很多
答案 2 :(得分:0)
<error-page>
<error-code>500</error-code>
<location>/error.jsp</location>
</error-page>
<error-page>
<error-code>400</error-code>
<location>/index.jsp</location>
</error-page>
<error-page>
<error-code>403</error-code>
<location>/403.jsp</location>
</error-page>
<error-page>
<error-code>404</error-code>
<location>/404.jsp</location>
</error-page
您必须将您的errorpages.jsp 放在WEB INF文件夹 r之外,并将以下代码放在您的web.xml中。
答案 3 :(得分:0)
您可以检查您的servlet-context.xml配置吗?对我来说,它使用以下配置。
<servlet-mapping>
<servlet-name>appServlet</servlet-name>
<url-pattern>/</url-pattern>
<url-pattern>*.*</url-pattern>
<url-pattern>*.do</url-pattern>
</servlet-mapping>
<error-page>
<error-code>404</error-code>
<location>/error404</location>
</error-page>
和弹簧控制器方法
@RequestMapping(value = "/error404", method = RequestMethod.GET)
public String error() {
logger.info("in error method");
return "/errorPages/error404";
}
如果你想在web.xml中指定jsp的位置,你可以在那里指定,否则你可以添加url。如果添加url,DispatcherServlet将负责响应浏览器,如果指定jsp,它将像普通的servlet响应一样。
在servlet-context.xml中验证这一点
<!-- Resolves views selected for rendering by @Controllers to .jsp resources in the /WEB-INF/views directory -->
<beans:bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<beans:property name="prefix" value="/WEB-INF/views/" />
<beans:property name="suffix" value=".jsp" />
</beans:bean>