Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
それらを検証するために、すべての受信リクエストをインターセプトする必要があります。コントローラーの呼び出しが成功した場合は、呼び出し元の jsp ページにエラー メッセージを返します。
spring 3 を使用してこの実装を実現する方法。
拡張するHandlerInterceptorAdapterと、独自のインターセプターが得られます。この拡張クラスでは、メソッドをオーバーライドしますpostHandle。このメソッドでは、タイプのオブジェクトをModelAndViewパラメーターとして取得します。これを使用して、必要に応じてターゲット ビューを変更できます。
HandlerInterceptorAdapter
postHandle
ModelAndView