Struts has implemented a singleton pattern for each Action class. But we set instance variables in the Action class. This leads to concurrency problems when multiple submissions are made to an Action class
Logged In: YES user_id=544801
Fixed the ActionBase class such that a new instance of the Action class is created in the perform() method, which is then used for event handling.
Log in to post a comment.
Logged In: YES
user_id=544801
Fixed the ActionBase class such that a new instance of the
Action class is created in the perform() method, which is
then used for event handling.