Registry / networking / tomcat-coyote

tomcat-coyote

JSON →
library11.0.2javamavenunverified

Tomcat Connectors and HTTP parser provides the core I/O and protocol handling for Apache Tomcat's HTTP and AJP connectors.

<dependency> <groupId>org.apache.tomcat</groupId> <artifactId>tomcat-coyote</artifactId> <version>11.0.2</version> </dependency>
INSTALL
IMPORT
SIG · TOMCAT-COYOTE
T
tomcat-coyote
networkingjavav11.0.2
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.

Http11NioProtocol
org.apache.coyote.http11.Http11NioProtocol

Minimal example starting a Coyote HTTP server.

import org.apache.coyote.http11.Http11NioProtocol; import org.apache.tomcat.util.net.NioEndpoint; public class CoyoteExample { public static void main(String[] args) throws Exception { NioEndpoint endpoint = new NioEndpoint(); Http11NioProtocol protocol = new Http11NioProtocol(); protocol.setEndpoint(endpoint); endpoint.setPort(8080); endpoint.init(); endpoint.start(); System.out.println("Coyote HTTP server started on port 8080"); Thread.sleep(10000); endpoint.stop(); } }
Debug
Known issues
breakingTomcat 11 requires Java 17+ and is not compatible with older Java versions.
fix
Ensure your runtime uses Java 17 or later.
affects: >=11.0.0
Upgrade
Version history
11.0.2latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
11 hits · last 30 days
node
10
OpenAI (training)
1
Resources
tomcat-coyote — mvn dependency:get tomcat-coyote · libregistry