What is Single Threaded Model in Servlets? Explain this
with an example?

Answer Posted / yuvraj singh

SingleThreadModel is a marker interface. It is used to ensure that servlet handle only one request at a time.

Servlets can implement SingleThreadModel interface to inform the container that it should make sure that only one thread is executing the servlet’s service() method at any given moment.

Is This Answer Correct ?    2 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is servlet invoker?

593


What is the GenericServlet class?

589


What do you mean by httpservlet?

555


What are the drawbacks of cgi?

556


What is a servlet context object?

614






How do you communicate in between Applets and Servlets?

581


What’s the difference between forward() and sendredirect() methods?

562


What is a web container and what is its responsibility?

517


What are the advantages of Servlet over CGI?

654


What is war file?

567


What are different methods of session management in servlets?

768


Differentiate between get and post?

669


Explain get and post.

640


Whether we can get deadlock situation in servlets?

564


Hello, My project requirement is like I need to create a web page using MVC pattern. I hava a bean class, jsp page, servlet, service and dao. My jsp has two fields. One is dropdown list. The option values has to get populated from the database table. The other one is a text box and its value has to come from database table. As of now I have defined the fields in bean class, got the values from database using arraylists in dao class and I called this from service class. Can anyone please tell me the workflow of how the servlet will get this arraylist and populate the arraylist values as dropdown options in jsp page? Also I would like to know the role of bean class in MVC pattern? Thanks in advance!

1821