Jetty Bootstrap

The Open Source Jetty starter kit library to quickly build standalone application

Find Out More

Make it easy to embed jetty into your standalone application!

Builbding a standalone application with an embedded application web server has never been so simple

JettyBootstrap bootstrap = new JettyBootstrap();
bootstrap.addWarApp("/tmp/webapp.war");
bootstrap.startServer();

Now you can access your web application browsing http://localhost:8080

See the project on GitHub

Benefits


Powerful

Based on Jetty, the amazing lightweight open source web server supported by Eclipse Foundation.

Integrated

Need to build a standalone application with an embedded web server? Jetty-Boostrap does that for you.

Configurable

Every setting has a default and can be specified either by the application itself or using system properties.

Flexible

The jetty-bootstrap library has been built in such a way that it is easy to tune and extend.


Code licensed under Apache License v2.0

Getting Started

Documentation


Configuration

Deployment

Packaging

Samples