• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Spring Web Flow - going to subflow states from parent flow.

 
Ranch Hand
Posts: 278
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I want to look up state-ids in subflows from main-flow and transition to that state.


My application : There are many pages implemented by my flows with 1 main flow and with multiple flows inside which can furthur have flows inside.

When user is navigating and entering values, he can exit at any point in application.
When user exits , we save the values entered & current-state of user in DB.
He can exit from any page ( in root flow or some page from sub flow)

Next time, user logs on, we have db-calls to fetch stored state-id and we want that page/state to show up directly and bypass all other prior states.
He can navigate back though from 'previous' button
It is getting very difficult for me to go from main-flow to nested subflows. I cannot go directly so nested flows are very difficult for me to work on.

Is there any way main/parent flow sees and can jump to subflow states directly.

how can i implement this functionality?Any other ideas?
 
reply
    Bookmark Topic Watch Topic
  • New Topic