Answer Posted / sivasubramanian.k
The Java Servlet API allows a software developer to add
dynamic content to a Web server using the Java platform.
The generated content is commonly HTML, but may be other
data such as XML. Servlets are the Java counterpart to non-
Java dynamic Web content technologies such as PHP, CGI and
ASP.NET. Servlets can maintain state across many server
transactions by using HTTP cookies, session variables or
URL rewriting.
The Servlet API, contained in the Java package hierarchy
javax.servlet, defines the expected interactions of a Web
container and a servlet. A Web container is essentially the
component of a Web server that interacts with the servlets.
The Web container is responsible for managing the lifecycle
of servlets, mapping a URL to a particular servlet and
ensuring that the URL requester has the correct access
rights.
A Servlet is an object that receives a request and
generates a response based on that request
| Is This Answer Correct ? | 4 Yes | 4 No |
Post New Answer View All Answers
How can you add and remove nodes in jtree?
What Is Query Throttling in java?
Is it possible for a yielded thread to get chance for its execution again?
Explain method overloading?
Explain the available thread states in a high-level?
What is the difference between a loader and a compiler?
What is singleton class in java and how can we make a class singleton?
Implementations of set interface?
how we can make a write-only class in java?
What do you mean by Function Overloading in java?
How to change value in arraylist java?
What are internal variables?
What does 0 mean in boolean?
What is bufferedreader in java?
Can a static block throw exception?