===== Jetty ===== * Light Weight, and very fast Web Container * No administration console * OPINION - most widely used container out there. - Install . download and extract the file contents to some directory - Starting Jetty . java -jar start.jar ./etc/jetty.xml - starts jetty with an example web application . will start the server with the contexts described in $JETTY_HOME/contexts . also browses $JETTY_HOME/webapps for applications on startup * does not support hot deploy from the webapps directory - Deploying applications . if you want hot deploy, then you have to configure an xml file in the $JETTY_HOME/contexts . if you are fine with shutdown and startup - then you can put new versions of *.war files into webapp directory - Undeploy Applications - delete it - Stopping the Server - CTRL+C