Registry / web-framework / undertow-core

undertow-core

JSON →
library2.4.0.RC4javamavenunverified

Undertow is a flexible, high-performance web server for Java, providing both blocking and non-blocking APIs.

<dependency> <groupId>io.undertow</groupId> <artifactId>undertow-core</artifactId> <version>2.4.0.RC4</version> </dependency>
INSTALL
IMPORT
SIG · UNDERTOW-CORE
U
undertow-core
web-frameworkjavav2.4.0.RC4
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Undertow
io.undertow.Undertow

Starts an Undertow HTTP server on port 8080 that responds with 'Hello, World!'.

import io.undertow.Undertow; import io.undertow.server.HttpHandler; import io.undertow.server.HttpServerExchange; public class Example { public static void main(String[] args) { Undertow server = Undertow.builder() .addHttpListener(8080, "localhost") .setHandler(new HttpHandler() { @Override public void handleRequest(HttpServerExchange exchange) throws Exception { exchange.getResponseSender().send("Hello, World!"); } }).build(); server.start(); } }
Debug
Known issues
breakingUndertow 2.x uses Jakarta EE namespace (jakarta.*) instead of javax.*. Ensure your project uses Jakarta Servlet API.
fix
Update imports from javax.servlet to jakarta.servlet and use compatible servlet containers.
affects: >=2.0.0
Upgrade
Version history
2.4.0.RC4latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
5 hits · last 30 days
node
4
Amazon
1
Resources
undertow-core — mvn dependency:get undertow-core · libregistry