What is Single Threaded Model in Servlets? Explain this
with an example?
Answer Posted / anjali nema
Typically, a servlet class is instantiated the first time
it is invoked. The same instance will be used over several
client requests, so all members that are declared in that
servlet are shared accross clients. That is what is meant
by multi threaded model, multiple clients that access the
same instance.
There are situations where you want to protect your servlet
member variables from being modified by different clients.
In this case, you can have your servlet implement the
marker interface SingleThreadModel. Every time a client
makes a request to a servlet that implements this
interface, the engine will create a new instance of the
servlet. For performance reasons, the engine can also
maintain a instance pool, handing out instances as they are
needed. Or it could also serialize client requests,
executing a single request.
| Is This Answer Correct ? | 38 Yes | 3 No |
Post New Answer View All Answers
What is servlet name in web xml?
Which interface should be implemented by all servlets?
Explain the steps involved in placing a servlet within a package?
What is meant by servlet? What are the parameters of the service method?
What is SingleThreadModel interface?
Explain their methods? Tell me their parameter names also have you used threads in servlet?
What are sessions in servlets?
Explain the features are in servlet 3?
How do I know if java is running on linux?
What are the differences between servlet context vs servlet config?
What are the type of protocols used in httpservlet?
Why is http protocol called as a stateless protocol?
Explain url encoding in servlet?
What is servlet instance?
Why do we need servlet filter?