What is the servlet?

Servlets are modules that extend request/response-oriented servers, such as Java-enabled web servers. For example, a servlet may be responsible for taking data in an HTML order-entry form and applying the business logic used to update a company's order database.

Showing Answers 1 - 16 of 16 Answers

suraj

  • Sep 12th, 2005
 

servlet is a piece of code which resides at server side and job is to generate dynamic responces.

  Was this answer useful?  Yes

shyamalatha

  • Sep 21st, 2005
 

servlet is an interface and is a dynamic content genarator.servlet is well suited for handling multiple request from the client.

  Was this answer useful?  Yes

gokulakrishnan

  • Sep 28th, 2005
 

servlet is used to handle request and response.Multiple concurrent request accessing the service method of the same servlet instance.that is Thread safe=true if it is false means it implements one interface called single thread model. Now a days we are using servlet we can't implement single thread model bcoz it is never more than one request accessing the service method of the single servlet instance,so it will create multiple instance for multiple clients.multiple clients access the single thread model is impossible.

  Was this answer useful?  Yes

dhana lakshmi

  • Nov 18th, 2005
 

servlet is a java object that implements servlet interface either directly or indirectly

  Was this answer useful?  Yes

. A servlet is a class that is used to extend the capabilities of servers that host applications access via a request-response programming model. Although servlets can respond to any type of request, they are commonly used to extend the applications hosted by web servers. For such applications, Java Servlet technology defines HTTP-specific servlet classes

  Was this answer useful?  Yes

NarendrababuThumati

  • Jul 11th, 2007
 

Servlet is a single instance multiple thread technology. It is a server side technology. It handles client request & response dynmically.

  Was this answer useful?  Yes

sowmyarao.r

  • Aug 19th, 2009
 

Servlet is a web-component. It is a server side technology. It contains JAVA code plus HTML code. It produces dynamic web pages programatically.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions