Hi, I am building my webflow application based on the booking app. It works fine with one single flow.
When I want to add a second flow (eg. hotels/checkout) to it, it still use the old path (hotels/booking).
What should I do in order to add a second flow to the application?
I have added the second flow using the following configuration:
webmvc-config.xml:
<bean name="hotels/checkout" class="...ChckoutFlowHandler" />
and then I also created directory/files for
hotels/checkout/checkout-flow.xml
and other
jsp files under hotels/checkout/
I also created hotels/checkout/views.xml like so:
During page execution, hotels/checkout? is getting called, but it was redirected to the page under hotels/booking/ rather than hotels/checkout/
What is missing in my spring setup?
Any suggestion would be very appreciated.
Thanks
Sam