Difference between single thread and multi thread model servlet

Showing Answers 1 - 1 of 1 Answers

fareed

  • Apr 20th, 2007
 

Single Thread Model means for every request one servlet instance must be
created by container to handle the client request, so it is secure. By
implementing these concept our application has become  more secure. By using
these we can developed web application like banking application.

Multi Thread Model means for any client one instance is created to handle
multiple request as most container does, it is not secure. 
By using this we can developed small application like school management.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions