reenstated 1.0.1 behavior
This commit is contained in:
@@ -4,30 +4,6 @@
|
||||
<title>Sell Item JSF - A Spring Web Flow Sample</title>
|
||||
</head>
|
||||
<body>
|
||||
<div align="left">Sell Item JSF - A Spring Web Flow Sample</div>
|
||||
<hr>
|
||||
<div align="left">
|
||||
<p>
|
||||
<a href="controller.faces?_flowId=sellitem-flow">Sell Item</A> (launch with a regular anchor tag)
|
||||
</p>
|
||||
<p>
|
||||
This Spring Web Flow sample application is the JSF-based version of the familiar "Sell item" sample.
|
||||
It illustrates the following concepts:
|
||||
</p>
|
||||
<ul>
|
||||
<li>Using Spring Web Flow with JSF</li>
|
||||
<li>Implementing a wizard using web flows.</li>
|
||||
<li>Use of conversation scope.</li>
|
||||
<li>Using expressions to apply dynamic flow navigation rules</li>
|
||||
<li>Using continuations to make the flow completely stable, no matter how browser navigation buttons are used.</li>
|
||||
<li>"Always redirect on pause" to benefit from the POST+REDIRECT+GET pattern with no special coding.</li>
|
||||
<li>
|
||||
Using "conversation invalidation after completion" to prevent duplicate submits of the same sale
|
||||
while taking advantage of continuations to allow back button usage while the application transaction is in process.
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<hr/>
|
||||
<div align="right"></div>
|
||||
<jsp:forward page="intro.faces" />
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,40 @@
|
||||
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
|
||||
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
|
||||
|
||||
<html>
|
||||
<body>
|
||||
|
||||
<f:view>
|
||||
<div align="left">Sell Item JSF - A Spring Web Flow Sample</div>
|
||||
<hr>
|
||||
<div align="left">
|
||||
<p>
|
||||
<h:form>
|
||||
<h:commandLink value="Sell Item" action="flowId:sellitem-flow"/> (launch with a JSF command link)
|
||||
</h:form>
|
||||
</p>
|
||||
<p>
|
||||
<a href="controller.faces?_flowId=sellitem-flow">Sell Item</A> (launch with a regular anchor tag)
|
||||
</p>
|
||||
<p>
|
||||
This Spring Web Flow sample application is the JSF-based version of the familiar "Sell item" sample.
|
||||
It illustrates the following concepts:
|
||||
</p>
|
||||
<ul>
|
||||
<li>Using Spring Web Flow with JSF</li>
|
||||
<li>Implementing a wizard using web flows.</li>
|
||||
<li>Use of conversation scope.</li>
|
||||
<li>Using expressions to apply dynamic flow navigation rules</li>
|
||||
<li>Using continuations to make the flow completely stable, no matter how browser navigation buttons are used.</li>
|
||||
<li>"Always redirect on pause" to benefit from the POST+REDIRECT+GET pattern with no special coding.</li>
|
||||
<li>
|
||||
Using "conversation invalidation after completion" to prevent duplicate submits of the same sale
|
||||
while taking advantage of continuations to allow back button usage while the application transaction is in process.
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<hr/>
|
||||
</f:view>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user