I have some variables in my action class.
Now I want to redirect to another action by setting those variable values as request parameters. How I can do this?
I'm trying to do it like this:
<result type="redirect">myProfileShow?param1=${value}¶m2={value2}</result>
It is not working.
myProfileShowis an action you should be using aredirectActionresult. If there are publicly-availablegetValue()andgetValue2()methods, I don't see anything immediately obvious.