| 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
|
|
|
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]
|
 |
 |
|
|
subject: Struts and Synchronized
|
|
|