Section 6.2 Implementing Servlets
Here is a simple example of embedding Jetty using a Hello world servlet:
Server server = new Server(8080);
Context root = new Context(server,"/",Context.SESSIONS);
root.addServlet(new ServletHolder(new HelloServlet("Ciao")), "/*");
server.start();


