<action name="someAction" class="">
<result name="showDetails" type="redirectAction">
<param name="actionName">someAction</param>
<param name="method">someMethod</param>
<param name="javabean.fieldOne">${javabean.fieldOne}</param>
<param name="javabean.fieldTwo">${javabean.fieldTwo}</param>
...
...
</result>
</action>
So instead of explicitly listing all the fields that I want to pass to the method, is it possible to pass the whole bean as parameter to the next action?
Note: I've tried ${javabean}
, but it gave me some class reference number as a string literal in an object. AFAIK, there's no way to recreate the object with this reference id.