aspose file tools
The moose likes Struts and the fly likes Struts and Synchronized Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Frameworks » Struts
Reply Bookmark "Struts and Synchronized" Watch "Struts and Synchronized" New topic
Author

Struts and Synchronized

Hari babu
Ranch Hand

Joined: Jun 25, 2001
Posts: 208
Hi all,
In my web application, i use Struts talking to EJB layer. When iam accessing a remote interface in my struts layer (in "Action" class ) do i need to make the remote as Synchronized? Because i have read that Struts allows multiple thread access to a single servlet.Any help in this regard is appreciated.
Thanks in advance
Junilu Lacar
Bartender

Joined: Feb 26, 2001
Posts: 4118
    
    2

Same general considerations apply in Struts: if you are accessing using an instance variable (which you really shouldn't have in an Action), you need to synchronize. If you are using a local variable, there is no need to synchronize as each thread will have its own set of local variables.


Junilu - [How to Ask Questions] [How to Answer Questions] [MiH]
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: Struts and Synchronized
 
Similar Threads
B&S: How to make Booking method atomic?
[Session Fa�ade/POJO Fa�ade] VS [Application Service]
EJB Or Spring To Separate Web Tier And Business Tier
passing exeception
Syncronised EJB access