How to make servlet thread safe?
Answer Posted / shakir khan
There are situations where we want to protect your servlet
member variables from being modified by different
clients.In this case you can have your servlet by
implementing the marker interface SigleThreadModel.
Everytime a client makes request to a servlet by
implementing this interface,servlet engine will create a
new instance of servlet.
For performance reason,servlet engine can also maintain a
instance pool,handing out instances as they are needed.Or
it could also serialize client request executing one after
another.
| Is This Answer Correct ? | 49 Yes | 9 No |
Post New Answer View All Answers
What are the advantages of cookies?
What is cookies in servlet with example?
Once the destroy() method is called by the container, will the servlet be immediately destroyed? What happens to the tasks(threads) that the servlet might be executing at that time?
Which java application server is the best?
Define the servlet mapping.
What are the exceptions thrown by servlets? Why?
What is difference between jsp and servlet?
What methodology can be followed to store more number of objects in a remote server?
What's the difference between servlets and applets?
How can a servlet be used to generate plain text instead of html?
What is the difference between the http servlet and generic servlet?
What are the steps that are required to handle the multi-threading?
What do you mean by default initialization in java servlet?
Can a jsp be called using a servlet?
What are the various ways of session supervision in servlets?