I use singleton="false" in my spring config file, and then it generates one
action instance for each request. There comes the problem, for example, I
want to edit a user's profile, I get the user's profile in the UserAction's
edit() method, and then forward to the eidt.jsp, then user eidt his profile,
and submit to UserAction's update() method; but since they're two different
Action instance, so the user's profile i get is missing in the second action
instance, can I pass the first Action instance's user profile to the second
action instance? if possible, how ?

Reply via email to