For an object to be runnable, it needs to implement the Runnable interface or extend the Thread class, however, it does not seem that HttpServlet does any of these.
How come HttpServlet can be threaded or have i mistaken?
|
For an object to be runnable, it needs to implement the How come |
|||||||||
|
|
The Servlet itself is not a thread. The container maintains one instance of the servlet class and each request (thread) calls the same servlet object. So the servlet instances is shared across threads. In pseudo code it may look like this:
No question, in reality it will be much, much, much more complex :-) BTW: That's the reason your servlet classes have to be thread safe! |
|||||||
|
|
Any class in Java may be executed on any thread, unless explicitly prohibited at run time by some sort of check. Without knowing the specifics of Also, the reason that |
|||
|
|
|
Anything is thread able. An EJB for spring beans are not threads themselves, but they run in multi threaded environments and hence they are thread able. |
|||
|
|