web.xml
是否可以像global-exception-mappings
Struts 2 中的操作那样处理定义在 中的错误页面。例如,而不是
<error-page>
<error-code>404</error-code>
<location>/common/jsp/FilkeNotFine.jsp</location>
</error-page>
定义如下:
<global-exception-mppings>
<exception-mapping ErrorCode="404" result="internernal-error" />
</global-exception-mppings>
有没有可以做到这一点的插件或拦截器?