What is servlet?
Answers were Sorted based on User's Feedback
Answer / saikiran
servlet is the server side funcionality
to plugin to the Servlet contianer to get the Services
from the contianer like
lifecycleManagement
thread management
request navigation
response deligation
session management
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / janet
Servlets are modules that extend requests/response-oriented
servers,such as java enabled web servers.
For example, a servlet might be responsible for taking
data in an HTML order-entry form and applying the business
logic used to update a company's order data base.
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / sureshkumar
Servlet is a plat form independent webapplication component
which executes in the webserver and can handle the multiple
requests concurrently.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / nagababu
Servlets are small program which execute on the webserver.
They run under webserver environment exploting
functionalities of the web server
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / sasmita
Servlet is a java class mainly handles Http request and
response from the web server. It acts as a controller for
receiving request from servers delegating to particular
model class and then forwarding a response by using
RequestDispatcher.
| Is This Answer Correct ? | 0 Yes | 0 No |
when the several requests comes to server..how it manage the requests
List the Different types of servlet?
What is the difference between the getrequestdispatcher(string path) method of javax.servlet.servletrequest interface and javax.servlet.servletcontext interface?
how this statement works..? public void service(HttpServletRequest request,HttpServletResponse response)
What is forward() and include() of servlets RequestDispatcher interface?
What is meant by a web application
What is servlet attributes and their scope?
When servlet object is created?
What are common tasks performed by Servlet Container?
why are extending GenericServlet and why are extending HttpServlet explain?
What is the protocol used by Server & Client?
I Have A Plan to develop a Project in Struts,I want the template of struts project with Hibernate.Canany body provide me the required information?