All Examples  This Package

Class examples.servlets.HelloKonaServlet

java.lang.Object
   |
   +----javax.servlet.GenericServlet
           |
           +----javax.servlet.http.HttpServlet
                   |
                   +----examples.servlets.HelloKonaServlet

public class HelloKonaServlet
extends HttpServlet
HelloKonaServlet. The minimal htmlKona-enabled servlet.


Constructor Index

 o HelloKonaServlet()

Method Index

 o service(HttpServletRequest, HttpServletResponse)
A very simple implementation of the service method, in which we construct an htmlKona servlet page and print "Hello world!" on it.

Constructors

 o HelloKonaServlet
 public HelloKonaServlet()

Methods

 o service
 public void service(HttpServletRequest req,
                     HttpServletResponse res) throws IOException
A very simple implementation of the service method, in which we construct an htmlKona servlet page and print "Hello world!" on it.

Overrides:
service in class HttpServlet

All Examples  This Package