July 2016
Intermediate to advanced
490 pages
10h 54m
English
Spring Web Flow creates variables or objects under scopes. These scopes are just similar to JEE scope components, which determine the time frame of when to access these variables. Under Spring Web Flow, there are five scopes that can be mapped to a newly created object:
flowScope: Assigns a flow variable; variables under this scope get allocated when a flow starts and destroyed when the flow ends.; any objects stored in flow scope need to be serializable: <evaluate expression= "addCartProducts.retrieveProductList
(flowScope.cartProducts)" />
conversationScope: Assigns a conversation variable; variables under this scope are used whenever a top-level needs to generate objects to be accessed by its sub-flows; they are destroyed when ...Read now
Unlock full access