Inheritance and Subflows with Spring WebFlow in grails

Spring Webflow supports some advanced reusability features such as thread inheritance and substreams. Using these capabilities in SWF xml definitions is quite simple, for example:

<flow parent="parent">
<subflow-state id="addGuest" subflow="createGuest">

      

Can these features be used with weblflows in Grails? Can I define them with SWF groovy dsl? How can I use Spring WebFlow definitions in grails?

+2


source to share


1 answer


Read the Grails documentation: http://grails.org/doc/1.1.1/guide/6.%20The%20Web%20Layer.html#6.5%20Web%20Flow

Grails supports sub-streams over DSL, I haven't tried inheritance.



amuses

Lee

0


source







All Articles