Tomcat threads vs Java threads

Posted by black666 on Stack Overflow See other posts from Stack Overflow or by black666
Published on 2010-05-11T11:00:22Z Indexed on 2010/05/11 11:04 UTC
Read the original article Hit count: 535

Filed under:
|
|

When using java threads, one has to take care of the basic problems that come with concurrency through synchronization etc.

AFAIK Tomcat also works with threads to handle its workload. Why is it, that I don't have to think about making my code threadsafe when it is running in Tomcat?

© Stack Overflow or respective owner

Related posts about java

Related posts about multithreading