what is the use of servlet engine?
Answers were Sorted based on User's Feedback
Answer / ajay dhingra
Servlets exist in and are managed by the servlet engine in
the Application Server. The servlet engine is an internal
object that handles all servlet meta functions. These
functions include instantiation, initialization,
destruction, access from other components, and configuration
management
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / 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 |
Which is illegal identifier in java?
Can a static method be final?
What is the difference between C++ and Java and your preferences?
Hi Friends, I am new to java. Can u explain about thread concept.How i know one thread is locked, and how can i force or acquire another thread for lock . Finally how to know thread is released from lock. Explain types of lock(like method level and block level) in thread.
What is Java Reflection API? Why it’s so important to have?
Does java initialize arrays to zero?
How to Sort Strings which are given in List and display in ascending order without using java api.
Why heap memory is called heap?
What is the public field modifier?
Can a static method be overridden in java?
How do you find the independent variable?
String Reverse in Java...!