Wizard Creation through struts2 - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T16:15:10Z http://stackoverflow.com/feeds/question/733052 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/733052/wizard-creation-through-struts2 1 Wizard Creation through struts2 Nirmal 2009-04-09T06:31:27Z 2009-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#733083 2 Answer by Konstantinos for Wizard Creation through struts2 Konstantinos 2009-04-09T06:46:27Z 2009-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#743979 1 Answer by Rich Kroll for Wizard Creation through struts2 Rich Kroll 2009-04-13T14:07:27Z 2009-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>