Re: UnderTow
Nils Breunese <[email protected]> Tue, 18 Nov 2025 15:05:06 +0100
| Newsgroups | gmane.comp.jakarta.turbine.maven.user |
|---|---|
| Message-ID | <[email protected]> |
> Op 18 nov 2025, om 14:33 heeft Tommy Svensson <[email protected]> het volgende geschreven: > > I'm sorry, but this is not maven related! I'm turning to this list due to that I believe there are many experienced developers here! > > I have used undertow before, and I liked it. But there where 3 official issues in the version I had, so I took the latest version. It has 22 issues!!!! > > I was in a bit of a schock! > > Can anyone suggest an alternative ? I just want to be able to do HTTP/S requests and receive HTTP/S requests. This in its simplest form possible. For doing requests: Java has HttpClient built-in since JDK 11. (In older JDK versions you only get HttpURLConnection, which is not fun to work with directly.) If JDK HttpClient doesn’t serve your needs, check out Apache HttpClient, Jetty HttpClient or Reactor Netty HttpClient. For receiving requests: the JDK has a simple HttpServer API. For anything slightly serious I’d consider embedding Tomcat, Jetty or Reactor Netty. I would personally use an application framework like Spring Boot or Quarkus, which typically provides integrations like these out of the box, but this might be overkill for your use case. Nils.