jetty.project
jetty.project copied to clipboard
Eclipse Jetty® - Web Container & Clients - supports HTTP/2, HTTP/1.1, HTTP/1.0, websocket, servlets, and more
**Jetty Version** jetty-12 **Jetty Environment** ee10 **Java Version** Java 21 **Question** I want to upgrade our project from jetty 9 to 12. In the previous version, a servlet class was...
**Jetty version(s)** Jetty 12.0.10 **Jetty Environment** core **Java version/vendor** `(use: java -version)` openjdk version "21.0.3" 2024-04-16 LTS OpenJDK Runtime Environment Temurin-21.0.3+9 (build 21.0.3+9-LTS) OpenJDK 64-Bit Server VM Temurin-21.0.3+9 (build 21.0.3+9-LTS,...
Jetty-12.0.x branch (for both ee9 and ee10) ``` [ERROR] Tests run: 38, Failures: 1, Errors: 0, Skipped: 2, Time elapsed: 8.460 s
**Jetty version(s)** 12.0.x **Enhancement Description** Currently, the EE10 `DefaultServlet` tries to do too many things: being the default servlet bound to the root of the context as well as a...
Is it possible to get the ssl session info from response at Jetty client? Example from Java 11 api: https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html#sslSession()
**Jetty version(s)** 12.0.10 **Jetty Environment** ee9 / ee8 **Java version/vendor** `(use: java -version)` Any **OS type/version** Any **Description** When working on PR #11930 it was discovered that the ee9 /...
**Jetty version(s)** 12.1.x **Enhancement Description** HTTP/3 QPack instruction encoders currently encode in a buffer that is added to a mutable buffer. They should be modified to encode directly into the...
**Jetty version(s)** 12.1.x **Enhancement Description** `ByteBufferPool.Accumulator` is now deprecated and should be replaced with better design, like `RetainableByteBuffer.DynamicCapacity`. Both the HTTP3 generators and FCGI still rely on this class. Once...
**Jetty version(s)** 12.1.x **Enhancement Description** `ChunkAccumulator` is deprecated, isn't used anywhere and doesn't do anything that cannot be done with `Content.*` static helpers. We should consider removing this class. See:...
**Jetty version(s)** 12.1.x **Enhancement Description** `ByteBufferCallbackAccumulator` has been deprecated but there still are places where we use it. We should replace all those usages with `RetainableByteBuffer.DynamicCapacity` and eventually remove this...