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();
在码头 8.1 中它工作正常。在码头 9.0 我得到 504 结果。
你知道问题可能出在哪里吗?它在最新的 jetty 9.0 版本中吗?
Jetty 会自动为您发送 100 个 Continue 响应,因此您不必这样做。
对于 100 继续发送,客户端必须发送和期望,并且 servlet 必须调用 request.getInputStream(或读取器或参数方法)。