Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jetty/jetty.project
Eclipse Jetty® - Web Container & Clients - supports HTTP/2, HTTP/1.1, HTTP/1.0, websocket, servlets, and more
https://github.com/jetty/jetty.project
eclipse embedded fcgi http http-client http-server http2 http2-push http3 https jakartaee java jetty jsp osgi servlet ssl tls unix-socket websockets
Last synced: 12 days ago
JSON representation
Eclipse Jetty® - Web Container & Clients - supports HTTP/2, HTTP/1.1, HTTP/1.0, websocket, servlets, and more
- Host: GitHub
- URL: https://github.com/jetty/jetty.project
- Owner: jetty
- License: other
- Created: 2011-07-14T01:11:57.000Z (over 13 years ago)
- Default Branch: jetty-12.0.x
- Last Pushed: 2024-09-22T00:02:38.000Z (about 2 months ago)
- Last Synced: 2024-09-22T09:09:58.459Z (about 2 months ago)
- Topics: eclipse, embedded, fcgi, http, http-client, http-server, http2, http2-push, http3, https, jakartaee, java, jetty, jsp, osgi, servlet, ssl, tls, unix-socket, websockets
- Language: Java
- Homepage: https://eclipse.dev/jetty
- Size: 246 MB
- Stars: 3,833
- Watchers: 266
- Forks: 1,906
- Open Issues: 387
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
# Eclipse Jetty
Eclipse Jetty is a lightweight, highly scalable, Java-based web server and Servlet engine.
Jetty's goal is to support web protocols (HTTP/1, HTTP/2, HTTP/3, WebSocket, etc.) in a high volume low latency way that provides maximum performance while retaining the ease of use and compatibility with years of Servlet development.
Jetty is a modern fully asynchronous web server that has a long history as a component oriented technology, and can be easily embedded into applications while still offering a solid traditional distribution for webapp deployment.- https://jetty.org
- https://projects.eclipse.org/projects/rt.jetty## Webapp Example
```shell
$ mkdir jetty-base && cd jetty-base
$ java -jar $JETTY_HOME/start.jar --add-modules=http,ee10-deploy
$ cp ~/src/myproj/target/mywebapp.war webapps
$ java -jar $JETTY_HOME/start.jar
```## Multiple Versions Webapp Example
```shell
$ mkdir jetty-base && cd jetty-base
$ java -jar $JETTY_HOME/start.jar --add-modules=http,ee10-deploy,ee8-deploy
$ cp ~/src/myproj/target/mywebapp10.war webapps
$ cp ~/src/myproj/target/mywebapp8.war webapps
$ echo "environment: ee8" > webapps/mywebapp8.properties
$ java -jar $JETTY_HOME/start.jar
```## Embedded Jetty Example
```java
Server server = new Server(port);
server.setHandler(new MyHandler());
server.start();
```## Embedded Servlet Example
```java
Server server = new Server(port);
ServletContextHandler context = new ServletContextHandler("/");
context.addServlet(MyServlet.class, "/*");
server.setHandler(context);
server.start();
```## Building Jetty from Source
```shell
$ git clone https://github.com/jetty/jetty.project.git
$ cd jetty.project
$ mvn -Pfast clean install # fast build bypasses tests and other checks
```For more detailed information on building and contributing to the Jetty project, please see the [Contribution Guide](https://jetty.org/docs/contribution-guide/index.html).
# Documentation
[Jetty's documentation](https://jetty.org/docs) is available on the Eclipse Jetty website.
The documentation is divided into three guides, based on use case:
* The [Operations Guide](https://jetty.org/docs/jetty/12/operations-guide/index.html) targets sysops, devops, and developers who want to install Eclipse Jetty as a standalone server to deploy web applications.
* The [Programming Guide](https://jetty.org/docs/jetty/12/programming-guide/index.html) targets developers who want to use the Eclipse Jetty libraries in their applications, and advanced sysops/devops that want to customize the deployment of web applications.
* The [Contribution Guide](https://jetty.org/docs/contribution-guide/index.html) targets developers that wish to contribute to the Jetty Project with code patches or documentation improvements.
# Commercial Support
Expert advice and production support of Jetty are provided by [Webtide](https://webtide.com).