This commit is contained in:
Keith Donald
2008-03-08 05:51:27 +00:00
parent a3e0e505bc
commit a6be885895
3 changed files with 11 additions and 7 deletions

View File

@@ -12,7 +12,7 @@
<h1>Welcome to Spring Travel</h1>
<p>
This reference application illustrates <a href="http://www.springframework.org/faces">Spring Faces</a>,
a software library that focuses on the development of rich web applications using Spring and JavaServerFaces.
a software library that integrates Spring and JavaServerFaces technology to power rich web applications.
</p>
<p>
The key features illustrated in this sample include:
@@ -24,6 +24,7 @@
<li>Managed persistence contexts with the Java Persistence API (JPA)</li>
<li>Unified Expression Language (EL) integration</li>
<li>Spring Security integration</li>
<li>Declarative page authoring with Facelets, including applying reusable page layouts</li>
<li>A lightweight component library for Ajax and client-side validation that employs progressive enhancement techniques</li>
<li>Exception handling support across all layers of the application</li>
<li>Spring IDE tooling integration, with support for graphical flow modeling and visualization</li>

View File

@@ -23,7 +23,7 @@
<div class="left">Spring Travel: A Spring Faces Reference Application</div>
<div class="right">
<c:if test="${currentUser.name != 'roleAnonymous'}">
Welcome, ${currentUser.name} <a href="${request.contextPath}/spring/logout">Logout</a>
Welcome, ${currentUser.name} | <a href="${request.contextPath}/spring/logout">Logout</a>
</c:if>
</div>
</div>

View File

@@ -5,10 +5,13 @@
<ui:define name="content">
<div class="section">
<h1>Logout</h1>
<p>You have successfully logged out.</p>
</div>
<div class="section">
<h1>Logout</h1>
<p>You have successfully logged out.</p>
<p>
<a href="#{request.contextPath}/spring/main">Continue</a>
</p>
</div>
</ui:define>
</ui:composition>