aspose file tools
The moose likes Servlets and the fly likes Scenarios in which session attributes are not thread safe? Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Servlets
Reply Bookmark "Scenarios in which session attributes are not thread safe?" Watch "Scenarios in which session attributes are not thread safe?" New topic
Author

Scenarios in which session attributes are not thread safe?

Rao Potla
Greenhorn

Joined: Jan 14, 2012
Posts: 11
please give some suggestions for me how to send multiple requests at the same time to access session attributes in non thread safe manner,

Thanks in advance.
RaoPotla
Paul Clapham
Bartender

Joined: Oct 14, 2005
Posts: 16487
    
    2

Click the button which sends a request to a servlet which uses session attributes. Then before that servlet sends its response, click the button again. Now you have two threads running the same servlet and using the same session.

To do this your servlet is going to have to run rather slowly, so that you have time to click the button twice.
Bear Bibeault
Author and ninkuma
Marshal

Joined: Jan 10, 2002
Posts: 56529
    
  14

Also multiple Ajax requests, frames, iframe, and tabs in the same browser.


[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
William Brogden
Author and all-around good cowpoke
Rancher

Joined: Mar 22, 2000
Posts: 12324
    
    1
Just look at how many requests go to make up a modern HTML page - each image, css, js, etc resource is loaded by a separate request, managed "simultaneously" by your browser, and thus "simultaneous" on the server side and each seeing the same session.

Bill

Java Resources at www.wbrogden.com
Rao Potla
Greenhorn

Joined: Jan 14, 2012
Posts: 11
Paul Clapham wrote:Click the button which sends a request to a servlet which uses session attributes. Then before that servlet sends its response, click the button again. Now you have two threads running the same servlet and using the same session.

To do this your servlet is going to have to run rather slowly, so that you have time to click the button twice.


thank you , its very helpful
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Scenarios in which session attributes are not thread safe?
 
Similar Threads
Are Session attributes thread safe?
session attributes thread safe?
doubts in SingleThreadModel
Which attribute scopes are thread-safe ?
Request attributes are thread safe