Wizard Creation through struts2 - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T16:15:10Zhttp://stackoverflow.com/feeds/question/733052http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/733052/wizard-creation-through-struts21Wizard Creation through struts2Nirmal2009-04-09T06:31:27Z2009-04-15T06:51:23Z
<p>I am developing system in which i am using struts2. I have a requirement to develop a wizard for some of my forms. Anyone can give me any link for creation of wizard through struts2 ? or any suggestion how to create wizard through struts2 ?</p>
http://stackoverflow.com/questions/733052/wizard-creation-through-struts2/733083#7330832Answer by Konstantinos for Wizard Creation through struts2Konstantinos2009-04-09T06:46:27Z2009-04-15T06:51:23Z<p>there <a href="http://cwiki.apache.org/S2PLUGINS/spring-webflow-plugin.html" rel="nofollow">is</a> a plug in for that</p>
http://stackoverflow.com/questions/733052/wizard-creation-through-struts2/743979#7439791Answer by Rich Kroll for Wizard Creation through struts2Rich Kroll2009-04-13T14:07:27Z2009-04-13T14:07:27Z<p>You will want to implement the <a href="http://struts.apache.org/2.1.6/struts2-core/apidocs/org/apache/struts2/interceptor/ScopeInterceptor.html" rel="nofollow">ScopeInterceptor</a> to create wizard like interfaces. An alternative is to implement custom conversational scope. A great tutorial on this can be found <a href="http://www.vitarara.org/cms/struts%5F2%5Fcookbook/using%5Fa%5Fconversation%5Fscope" rel="nofollow">here</a>.</p>