我创建了一个错误页面来处理任何可能的404和500 http错误。 我将错误页面放在root中并在web.xml中配置:
<error-page>
<error-code>404</error-code>
<location>/error.jsp</location>
</error-page>
<error-page>
<error-code>500</error-code>
<location>/error.jsp</location>
</error-page>
<error-page>
<exception-type>java.lang.Throwable</exception-type>
<location>/error.jsp</location>
</error-page>
它非常好用。 但我在想什么是放错我的error.jsp的正确位置?将它放在根文件夹中是一种好方法吗?把它放在WEB-INF中会更好吗?如果是这样,我应该如何在web.xml中配置路径?