Øyvind Horneland
oyvindhorneland.bsky.social
Øyvind Horneland
@oyvindhorneland.bsky.social
Java developer living in Oslo, Norway. Mainly here for tech content, especially interested in #java / #jvm / #openjdk related topics.
Upcoming Spring Boot 3.4.0 will include Apache HttpClient 5.4.x and they've included a (draft) migration note for this issue at github.com/spring-proje....
Spring Boot 3.4 Draft Release Notes
Spring Boot helps you to create Spring-powered, production-grade applications and services with absolute minimum fuss. - spring-projects/spring-boot
github.com
November 17, 2024 at 1:33 PM
Code based workaround is to change `protocolUpgradeEnabled` to `false` when creating the HttpClient's `RequestConfig`.

RequestConfig.custom()
.setProtocolUpgradeEnabled(false)
.build()
November 17, 2024 at 1:33 PM