Does anyone know a good Java Web Server framework that I can be bundled into an executable that can be run from the command line?
Basically something that allows me to develop a program that runs on a port via HTTP and for the user requires these installation steps:
- Install Java.
- Download my executable tool.
- Run it from the command line.
Any idea if any of the popular frameworks like Java Spring or Grails offer support for this?
Have you had a look at Jetty?
From the Jetty site:
Details on embedding Jetty can be found here.