mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-09-23 14:40:00 +00:00
This commit adds a new constructor to `JettyClientHttpConnector` and deprecates another one. Jetty is not creating `HttpClient` instances using a builder API, but rather setting immutable configuration at constructor time and using setters for the rest. This commit addresses that by deprecating the constructor variant accepting a `Consumer` and just delegating to Spring's implementation for setting the client resources as needed. Closes gh-22977