I have a login page. Requests for login can come from multiple action classes. Once the user is validated i have to redirect it to the previous action class (from which the requ
You are missing a global result that will use a dynamic parameter for your target action's URL.
<global-results>
<result name="return" type="redirect">${target}</result>
</global-results>
You can return this result from the interceptor or from the action that implements TargertAware. The target property should have a getter to be invoked by the result.