This week's book giveaway is in the General Computing forum. We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line! See this thread for details.
can you tell me the main purpuse of SingleThreadModel Interface. i think so it was deprecated from servlet 2.3 version till yet there is no alterenative for SingleThreadModel Interface i mean to say upto servlet 2.5 v right?
i want to know that what is the main puropuse of SingleThreadModel Interface. why it was deprecated from servlet 2.3 version
The STM interface was meant to make servlets thread-safe by making sure that no two threads ran the same servlet instance at the same time. But over time it became clear that this is not sufficient to make web apps thread-safe; there are other concurrency issues (having to do with sessions and context attributes). So it was decided to abandon this nonfunctional approach to thread safety. The burden to make web apps thread-safe now lies solely with the application developer.