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
Based on Jetty, the amazing lightweight open source web server supported by Eclipse Foundation.
Need to build a standalone application with an embedded web server? Jetty-Boostrap does that for you.
Every setting has a default and can be specified either by the application itself or using system properties.
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