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.
シンプルなコードを使用しています
servletResponse.setStatus(HttpServletResponse.SC_CONTINUE); servletResponse.flushBuffer();
jetty 8.1 では正常に動作します。jetty 9.0 では、504 の結果が得られます。
どこに問題があるか知っていますか?最新のjetty 9.0バージョンのどこかにありますか?
Jetty は 100 の Continue 応答の送信を自動的に処理するため、これを行う必要はありません。
100 が送信され続けるためには、クライアントは期待値を送信する必要があり、サーブレットは request.getInputStream (またはリーダーまたはパラメーター メソッド) を呼び出す必要があります。