You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To increase the re-usability of a flow definition, it'd be nice to have bean name understand expression too, just like what view name does.
For example:
<!---- Display the first input form view -->
<view-state id="showList" view=".${flowScope.flowVar}.list">
<render-actions>
<action bean="${flowScope.flowVar}Action" method="list" />
</render-actions>
...
</view-state>
Application could follow certain naming convention and reuse the same flow to perform CRUD operations, while the view name and the action bean or POJO bean references are dynamic.