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
うか?