webflow tutorial outline
This commit is contained in:
@@ -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>
|
||||
@@ -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 ></a>
|
||||
</p>
|
||||
</body>
|
||||
</html>
|
||||
@@ -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 ></a>
|
||||
</p>
|
||||
</body>
|
||||
</html>
|
||||
@@ -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>
|
||||
Reference in New Issue
Block a user