aspose file tools
The moose likes Servlets and the fly likes Servlet 3.0 Async and Threads Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Servlets
Reply Bookmark "Servlet 3.0 Async and Threads" Watch "Servlet 3.0 Async and Threads" New topic
Author

Servlet 3.0 Async and Threads

Good Go
Greenhorn

Joined: Jan 10, 2009
Posts: 1
Over at the Servlet 3.0 spec lead's blog (http://weblogs.java.net/blog/mode/archive/2008/12/asynchronous_su.html#comments) there's a post regarding the Asynchronous support ... It offers an example of using the AsyncContext to wait for a Web Service to return:

I posed my question as follows ... maybe someone here can offer insight:

This may be just my ignorance ... but ... from the code here, it looks like the request handling is going to spawn a thread that sits around until the web service returns and then render the response ... isn't the point of having the non-blocking IO to avoid consuming threads while we wait?

Or am I missing something???

Best ... and Happy New Year ...
Bear Bibeault
Author and ninkuma
Marshal

Joined: Jan 10, 2002
Posts: 56207
    
  13

"Good Go", please check your private messages for an important administrative matter.


[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: Servlet 3.0 Async and Threads
 
Similar Threads
thread safe
AsyncContext timeout
Async Listener and Request/Response objects
what's the use of synchronizing the service in servlet?
how thread are created by the container