tags:

views:

209

answers:

4

Where can I get knowledge about servlets?

+8  A: 

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

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

Uri
+5  A: 

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

NoahD
+1  A: 

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.

Adeel Ansari
A: 

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.