Does spring web flow used widely in industry for a conversational flow behavioral application or a wizard kind of application. The main purpose of going such application is to reduced the data we need to keep in session right? Does it worth to go for a framework such as web flow or else what would be other industry standard implementation for such enterprise application?
Below are the disadvantages of a normal implementation contrast to spring web flow which Spring claims,
- Visualizing the flow is very difficult.
- The application has a lot of code accessing the HTTP session.
- Enforcing controlled navigation is important but not possible.
- Proper browser back button support seems unattainable.
- Browser and server get out of sync with "Back" button use.
- Multiple browser tabs causes concurrency issues with HTTP session data.