I've seen the template for swf2 but it kinda confusing with the pom.xml contents..
it uses the following:
Code:
<!-- Container-provided dependencies-->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.4</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>jsp-api</artifactId>
<version>2.1</version>
<scope>provided</scope>
</dependency>
And Apache Tomcat (http://tomcat.apache.org/whichversion.html) says:
Code:
Servlet/JSP Spec Apache Tomcat version Actual release revision
2.5/2.1 6.0.x 6.0.24
2.4/2.0 5.5.x 5.5.28
May we ask the tomcat version of the template?

Originally Posted by
Keith Donald
Use FlowHandlerMapping in conjunction with FlowHandlerAdapter as described in ref manual and demoed in samples. For the simplest possible web flow sample, look at this new web flow project template here:
https://src.springsource.org/svn/spr.../webflow/trunk.
FlowController is old school and not nearly as elegant...
Keith