| Author |
Scope of action method in struts2
|
Arjun Murthy
Greenhorn
Joined: May 11, 2011
Posts: 10
|
|
Hi,
What is the scope of an action method in struts2? I am guessing it is session based but i would like to know if there is any way to make an action method's scope to be application level.
|
 |
Joe Ess
Bartender
Joined: Oct 29, 2001
Posts: 8259
|
|
|
A new instance of an action is created with each HTTP request, so the scope of a method is request. You can access the session by implementing SessionAware.
|
"blabbing like a narcissistic fool with a superiority complex" ~ N.A.
[How To Ask Questions On JavaRanch]
|
 |
 |
|
|
subject: Scope of action method in struts2
|
|
|