polish
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
Reference in New Issue
Block a user