Hello,
I think it's a very silly question but I can't find an explication.
I have a multi window application, I have a flow for each window. They are 3 flows. But I need a session scope bean to use in all the flows. It will be loaded in the first flow but it continue in the others.
Until now, I have created a JSF backing bean, and I define it has session scope.
But I would like to use the standard web flow style, it would be something like this:Code:@Component("storageBBeanSession") @Scope("session") public class StorageBBean implements Serializable {...}
Thanks in advance!Code:public class StorageBBean implements Serializable {...} <evaluate expression="action.loadStorage()" result="sessionScope.storageBBean" />


Reply With Quote