Re: Synchronization of dispatch Action

2006-03-21 Thread Ed Griebel
To answer your question, in general, its a very bad idea to synchronize action methods as that will bring your webapp to a screeching halt because Struts only creates a single instance of a given action class. What you will be doing is essentially handling a single request at a time, very bad. Now

Synchronization of dispatch Action

2006-03-21 Thread digant . k . joshi
Is it a good idea to synchronize DispathAction to make sure all requests to DB and results which come back don't overstep each other ? Pls help. Following is some detail of what am I doing in my application. I have few operation I want to synchronize. In my app following steps I am takin