这是我的 web.xml 的一部分
<error-page>
<error-code>500</error-code>
<location>/index</location>
</error-page>
有没有办法告诉 web.xml 文件处于开发模式:
<location>/displayException</location>
对于上述 location property
?
或任何方式通过代码添加条件?
尝试这样做的目的是:在开发模式下,我想在页面中查看异常,而在实时模式下,我想在发生异常时将他重定向到默认页面。