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.
インターセプターがあり、特定の条件下で文字列応答をブラウザーに送信してから、実行を完全に停止したいと考えています。
これどうやってするの?
実行を停止する場合は、preHandle メソッドをオーバーライドし、false を返します。
@Override public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception { response.getWriter().write("something"); return false; }