When you deploy a web app (servlets) with embedded jetty, do you still need to install jetty on the server?
How do you start/stop jetty when it is embedded? You also have to consider when the server reboots.
Just confused on the deployment aspect of it.
No there is nothing to install. The server should be contained with your application.
You have to stop or start you application. You can kill the process. Doing
ctrl + cshould kill the application. Read more about this mode at jetty’s website.