{"id":13694790,"url":"https://github.com/jetty/jetty.project","last_synced_at":"2026-03-05T00:16:28.815Z","repository":{"id":37274639,"uuid":"2045207","full_name":"jetty/jetty.project","owner":"jetty","description":"Eclipse Jetty® - Web Container \u0026 Clients - supports HTTP/3, HTTP/2, HTTP/1, websocket, servlets, and more","archived":false,"fork":false,"pushed_at":"2025-09-07T08:18:44.000Z","size":272203,"stargazers_count":3999,"open_issues_count":290,"forks_count":1969,"subscribers_count":263,"default_branch":"jetty-12.1.x","last_synced_at":"2025-09-07T17:14:46.911Z","etag":null,"topics":["eclipse","embedded","fcgi","http","http-client","http-server","http2","http3","https","jakartaee","java","jetty","jpms","jsp","osgi","servlet","ssl","tls","unix-socket","websockets"],"latest_commit_sha":null,"homepage":"https://jetty.org/","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jetty.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":"NOTICE.txt","maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2011-07-14T01:11:57.000Z","updated_at":"2025-09-07T14:57:52.000Z","dependencies_parsed_at":"2025-02-03T07:25:11.926Z","dependency_job_id":"f51f1700-65c0-4f9c-b346-d6708cc2576a","html_url":"https://github.com/jetty/jetty.project","commit_stats":{"total_commits":22523,"total_committers":228,"mean_commits":98.78508771929825,"dds":0.785330550992319,"last_synced_commit":"2d9dab644a1bea20f67ec173bd92ec384b084249"},"previous_names":["jetty/jetty.project","eclipse/jetty.project"],"tags_count":487,"template":false,"template_full_name":null,"purl":"pkg:github/jetty/jetty.project","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jetty%2Fjetty.project","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jetty%2Fjetty.project/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jetty%2Fjetty.project/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jetty%2Fjetty.project/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jetty","download_url":"https://codeload.github.com/jetty/jetty.project/tar.gz/refs/heads/jetty-12.1.x","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jetty%2Fjetty.project/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274151343,"owners_count":25231188,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-08T02:00:09.813Z","response_time":121,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["eclipse","embedded","fcgi","http","http-client","http-server","http2","http3","https","jakartaee","java","jetty","jpms","jsp","osgi","servlet","ssl","tls","unix-socket","websockets"],"created_at":"2024-08-02T17:01:42.354Z","updated_at":"2026-01-15T22:18:32.344Z","avatar_url":"https://github.com/jetty.png","language":"Java","readme":"# Eclipse Jetty\n\nEclipse Jetty is a lightweight, highly scalable, Java-based web server and Servlet engine.\nJetty'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.\nJetty 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.\n\n- https://jetty.org\n- https://projects.eclipse.org/projects/rt.jetty\n\n## Webapp Example\n\n```shell\n$ mkdir jetty-base \u0026\u0026 cd jetty-base\n$ java -jar $JETTY_HOME/start.jar --add-modules=http,ee11-deploy\n$ cp ~/src/myproj/target/mywebapp.war webapps\n$ java -jar $JETTY_HOME/start.jar \n```\n\n## Multiple Versions Webapp Example\n\n```shell\n$ mkdir jetty-base \u0026\u0026 cd jetty-base\n$ java -jar $JETTY_HOME/start.jar --add-modules=http,ee11-deploy,ee8-deploy\n$ cp ~/src/myproj/target/mywebapp10.war webapps\n$ cp ~/src/myproj/target/mywebapp8.war webapps\n$ echo \"environment: ee8\" \u003e webapps/mywebapp8.properties\n$ java -jar $JETTY_HOME/start.jar \n```\n\n## Embedded Jetty Example\n\n```java\nServer server = new Server(port);\nserver.setHandler(new MyHandler());\nserver.start();\n```\n\n## Embedded Servlet Example\n\n```java\nServer server = new Server(port);\nServletContextHandler context = new ServletContextHandler(\"/\");\ncontext.addServlet(MyServlet.class, \"/*\");\nserver.setHandler(context);\nserver.start();\n```\n\n## Building Jetty from Source\n\n```shell\n$ git clone https://github.com/jetty/jetty.project.git\n$ cd jetty.project\n$ mvn -Pfast clean install # fast build bypasses tests and other checks\n```\n\nFor more detailed information on building and contributing to the Jetty project, please see the [Contribution Guide](https://jetty.org/docs/contribution-guide/index.html).\n\n# Documentation\n\n[Jetty's documentation](https://jetty.org/docs) is available on the Eclipse Jetty website.\n\nThe documentation is divided into three guides, based on use case:\n\n* 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.\n\n* 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.\n\n* 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.\n\n\n# Commercial Support\n\nExpert advice and production support of Jetty are provided by [Webtide](https://webtide.com).\n","funding_links":[],"categories":["Java"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjetty%2Fjetty.project","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjetty%2Fjetty.project","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjetty%2Fjetty.project/lists"}