Registry / networking / jetty-alpn-server

jetty-alpn-server

JSON →
library12.1.7javamavenunverified

Jetty server module for ALPN (Application-Layer Protocol Negotiation) support.

<dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-alpn-server</artifactId> <version>12.1.7</version> </dependency>
INSTALL
IMPORT
SIG · JETTY-ALPN-SERVER
J
jetty-alpn-server
networkingjavav12.1.7
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.

ALPNServerConnectionFactory
org.eclipse.jetty.alpn.server.ALPNServerConnectionFactory

Creates a Jetty server with ALPN support.

import org.eclipse.jetty.alpn.server.ALPNServerConnectionFactory; import org.eclipse.jetty.server.Server; import org.eclipse.jetty.server.ServerConnector; public class Example { public static void main(String[] args) throws Exception { Server server = new Server(); ServerConnector connector = new ServerConnector(server); ALPNServerConnectionFactory alpn = new ALPNServerConnectionFactory(); connector.addConnectionFactory(alpn); server.addConnector(connector); server.start(); } }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
12.1.7latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
6 hits · last 30 days
node
6
Resources
jetty-alpn-server — mvn dependency:get jetty-alpn-server · libregistry