Sunday, April 17, 2011

Brief Idea about servlets

Where can I get knowledge about servlets?

From stackoverflow
  • Most people would start with Sun's official tutorial about servlets.

    http://java.sun.com/javaee/5/docs/tutorial/doc/bnafd.html

  • Background [from Jacob]:

    Servlets are server side java programs. For example when you submit a order to buy some stuff a servlet could process your order and send you an email confirmation.

    Servlets handle requests better than say CGI and most other technologies.

    Servlets need a web container or a J2EE container to be able to deploy, your normal http server will not be sufficient.

    Servlets are backed by the java programming language and as such programming languages theoretically have no limitations on delivering functionality, this is not true of some other languages

    General Information

    Sun's Tutorials

    Books

  • After reading the official tutorial. Think of getting a copy of Head First Servlet and JSP. Servlet and related techs would become handy after reading this.

  • Servlets are server side java programs. For example when you submit a order to buy some stuff a servlet could process your order and send you an email confirmation.

    Servlets handle requests better than say CGI and most other technologies.

    Servlets need a web container or a J2EE container to be able to deploy, your normal http server will not be sufficient.

    Servlets are backed by the java programming language and as such programming languages theoretically have no limitations on delivering functionality, this is not true of some other languages.

0 comments:

Post a Comment