Tomcat 8
Servlet 3.1
我正在尝试让默认错误页面正常工作。例如,This post就是我要做的。
我的web.xml
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
version="3.1">
...
<!--
<error-page>
<error-code>404</error-code>
<location>/error.jsp</location>
</error-page>
-->
<error-page>
<location>/error.jsp</location>
</error-page>
当我删除评论时,我会看到我的错误页面,在尝试访问不存在的网址时。通过评论,尝试相同的URL,我的浏览器只返回404。
我找不到任何说明这种行为在3.0和3.1之间发生变化的东西,我在tomcat日志中看不到任何错误。