This commit is contained in:
Keith Donald
2008-03-08 05:52:03 +00:00
parent a6be885895
commit 575ddf878c
2 changed files with 5 additions and 4 deletions

View File

@@ -8,7 +8,7 @@
<div class="section">
<h1>Welcome to Spring Travel</h1>
<p>
This reference application shows how to use Spring MVC and Web Flow together with JavaServerPages (JSP) and Tiles to develop web applications.
This reference application shows how to use Spring MVC and Web Flow together with JavaServerPages (JSP) and Tiles to power web applications.
</p>
<p>
The key features illustrated in this sample include:
@@ -20,6 +20,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 JSP, JSTL, and Spring MVC's form tag library
<li>Applying reusable page layouts with Tiles</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

@@ -5,7 +5,7 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Spring Web Flow: Hotel Booking Sample Application</title>
<title>Spring Travel: Spring MVC and Web Flow Reference Application</title>
<style type="text/css" media="screen">
@import url("<c:url value="/resources/css-framework/css/tools.css" />");
@import url("<c:url value="/resources/css-framework/css/typo.css" />");
@@ -19,11 +19,11 @@
<div id="page">
<div id="header" class="clearfix spring">
<div id="welcome">
<div class="left">Spring Web Flow + Spring MVC: Hotel Booking Sample Application</div>
<div class="left">Spring Travel: Spring MVC and Web Flow Reference Application</div>
<div class="right">
<security:authorize ifAllGranted="ROLE_USER">
<c:if test="${not empty currentUser}">
Welcome ${currentUser.name}!
Welcome, ${currentUser.name} |
</c:if>
<a href="<c:url value="/spring/logout" />">Logout</a>
</security:authorize>