Overview of Jetty Server Libraries
jetty-12.1.xThe Eclipse Jetty Project provides server-side libraries designed to programmatically configure and start an HTTP or WebSocket server from a main class, or to embed the server directly into an existing application.
Common use cases include:
- Exposing REST endpoints via an HTTP server.
- Building proxy applications that process and forward HTTP requests (often used in conjunction with Jetty client libraries).
- Creating generic network servers that interpret custom protocols beyond HTTP.
- Embedding WebSocket servers.