| Author |
Difference between Servlet and Servlet Instance
|
kashwini Kulkarni
Ranch Hand
Joined: Aug 07, 2009
Posts: 63
|
|
Hello ,
I have a very basic question regarding servlet , (which keeps me confusing)
What is the difference between Servlet and Servlet Instance?
I surfed the internet and found the following : -
" The init() method is called once per servlet instance. "
" There are no concurrency issues during servlet initialization, because the server calls the init method once, when it loads the servlet. "
which appear confusing to me.
Can anyone please explain me or let me know some site that has in-depth explanation about servlet life cycle?
Thanks in Advance
Kashwini
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56153
|
|
There's no difference really. "The servlet" isn't an exact term -- it could mean a servlet instance, or it could mean the servlet class.
Whenever mention is made of a loaded and running servlet, it's a servlet instance that is meant.
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
Vishal Trivedi
Ranch Hand
Joined: Sep 05, 2011
Posts: 57
|
|
|
A servlet depending on the context where it is used may be a class or an instance as well.And instance as you have mentioned the serlet class that has peen processed to initialization.....
|
 |
 |
|
|
subject: Difference between Servlet and Servlet Instance
|
|
|