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(); 

  • Currently 2.95/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
  Flag Inappropriate Content 0 comments