webflow tutorial outline

This commit is contained in:
Keith Donald
2009-03-18 21:08:40 +00:00
parent 4dff5bf02d
commit a6486d3355
4 changed files with 72 additions and 1 deletions

View File

@@ -4,7 +4,21 @@
xsi:schemaLocation="http://www.springframework.org/schema/webflow http://www.springframework.org/schema/webflow/spring-webflow-2.0.xsd">
<view-state id="webflowProjectOverview">
<transition on="next" to="webflowSetup" />
</view-state>
<view-state id="webflowSetup">
<transition on="next" to="webflowExercise" />
</view-state>
<view-state id="webflowExercise">
<transition on="next" to="webflowWhatsNext" />
</view-state>
<view-state id="webflowWhatsNext">
<transition on="finish" to="finish" />
</view-state>
<end-state id="finish" view="externalRedirect:welcome" />
</flow>

View File

@@ -0,0 +1,15 @@
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ page session="false" %>
<html>
<head>
<title>Getting Started with Spring Web Flow: Creating your first flow</title>
</head>
<body>
<h2>
Do this, do that, test it out.
</h2>
<p>
<a href="tutorial?execution=${flowExecutionKey}&_eventId=next">Next &gt;</a>
</p>
</body>
</html>

View File

@@ -0,0 +1,27 @@
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ page session="false" %>
<html>
<head>
<title>Getting Started with Spring Web Flow: Setting up Web Flow in a Spring web application</title>
</head>
<body>
<h2>
What does the configuration of a typical Spring web application look like?
</h2>
<p>
</p>
<h2>
How do I plug-in Spring Web Flow?
</h2>
<p>
</p>
<h2>
How do I create and deploy new flows?
</h2>
<p>
</p>
<p>
<a href="tutorial?execution=${flowExecutionKey}&_eventId=next">Next &gt;</a>
</p>
</body>
</html>

View File

@@ -0,0 +1,15 @@
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ page session="false" %>
<html>
<head>
<title>Getting Started with Spring Web Flow: Where To Go From Here</title>
</head>
<body>
<h2>
Check this out, check that out.
</h2>
<p>
<a href="tutorial?execution=${flowExecutionKey}&_eventId=finish">Finish</a>
</p>
</body>
</html>