Hi I have been experimenting with spring webflow and got a simple webflow that displays a 'user details' form and then invokes the 'AddUserAction'
add a new user.
I want the end-state of this flow to redirect me to my "/actions/ListUsers" view. The '/actions/ListUsers' is instrumented using standard Spring MCV
as an AbstractController.
I have tried:
<end-state id="finish" view="/actions/ListUsers"/> and other variants
but it does not work since I am not being redirected.
Hani


Reply With Quote