1)consider this scenario:-
Action1------1st req------->view.jsp------2nd req--------->action1
again
In struts2 for each new request a new action object gets created.
So when request comes back again to action1 then for 2nd request, will a new action1 object get
created or the same one (used in 1st req) get used?
2)consider this scenario:-
Action1------1st req------->view.jsp------2nd req--------->
action2
i am putting some object in request scope in action1 which i am using in view.jsp. and i also
want to retrieve that same object in action2.
How to do this??
Actually since the object is in request scope it gets lost during 2nd request.
So in strust2 how to put some object in request scope (or any scope) from within the jsp so that
i can pass it to another resource.