在 Spring MVC 中,如果我使用普通提交提交 Web 表单,我可以将 404 异常处理web.xml
为
<error-page>
<error-code>404</error-code>
<location>404.jsp</location>
</error-page>
<error-page>
<exception-type>java.lang.Exception</exception-type>
<location>404.jsp</location>
</error-page>
但是如何拦截404
来自 ajax 调用的错误(可能使用@ControllerAdvice
)并将自定义异常传递给xhr.responseText
in jquery
?