what is a servlet? and explain its lifecycle methods?
Answer Posted / nitin singh
Servlets are java programming language classes that
dynamically process requests and construct responses.These
are programs that are executed on server side and generate
response on client side.
The life cycle methods of servlet are
init(),service() and destroy().
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is java ee technologies?
Define thin client?
What is 'applet container' ?
Can I run seam in a j2ee environment?
Why is java called technology?
What is the best java course?
What is ejb jar file?
What is java ee server?
you are to choose between two procedures,both of which copute the minimum value in an array of integers.one procedure returns the smallest integer if its array argument is empty. the other requires a nonempty array.which procedure should you choose and why?
What is j2ee application?
What is build tool in java?
What is java listener?
What is a component in java?
Is java procedural or object oriented?
for example we are login into the irctc server from there it will go to the selected bank and deduct amount and come back to the irctc. so if we are developing this in java means will it be run on the same session. but as per my knowledge bank is separate and irctc is separate URL's so it will use two different sessions then how it is maintaining same session through out application and even it uses the payment gateway? how it is working can any one help me on that??