What is the difference between javax.faces.flow.FlowScopedand javax.enterprise.context.ConversationScopedbeans and when should it be used in an application? As I understand it, they are somehow similar, but I canβt understand this in the materials that I found on the Internet?
javax.faces.flow.FlowScoped
javax.enterprise.context.ConversationScoped
A stream is a group of views that are bound by navigation rules. Flow woped beans remain alive while you are moving inside this stream, and they die when you leave the stream.
beans , , Conversation.begin() Conversation.end(). .
Conversation.begin()
Conversation.end()
beans JSF.