Can anyone detail the differences between the Struts2 Conversation plugin and ActionFlow plugin and when I should choose one or the other?
Regards
Can anyone detail the differences between the Struts2 Conversation plugin and ActionFlow plugin and when I should choose one or the other?
Regards
They are totally different plugins for different purposes. Conversation plugin adds conversation scope to your application. ActionFlow plugin helps you create wizard from actions where holding data in some scope is just one of the features. With ActionFlow you can define sequences of actions (i.e. which action will be executed after the current action). With Conversation you can define which data will be put into conversation scope and when conversation will start and end.
Use ActionFlow plugin when you need to create a wizard.
Use Conversation plugin when you want to add conversation scope to your application.