From 9106b8383489c4db969feb0198c6dd81f6f96ea1 Mon Sep 17 00:00:00 2001
From: Keith Donald <kdonald@vmware.com>
Date: Wed, 6 May 2009 18:22:37 +0000
Subject: [PATCH] polish

---
 .../src/main/webapp/WEB-INF/layouts/page.jsp         |  4 +---
 .../src/main/webapp/WEB-INF/spring/mvc-config.xml    | 12 +++---------
 2 files changed, 4 insertions(+), 12 deletions(-)

diff --git a/org.springframework.samples.petclinic/src/main/webapp/WEB-INF/layouts/page.jsp b/org.springframework.samples.petclinic/src/main/webapp/WEB-INF/layouts/page.jsp
index f0a2acd..df5ed7b 100644
--- a/org.springframework.samples.petclinic/src/main/webapp/WEB-INF/layouts/page.jsp
+++ b/org.springframework.samples.petclinic/src/main/webapp/WEB-INF/layouts/page.jsp
@@ -16,8 +16,7 @@
 						<li><a href="<c:url value="/account/signout"/>">Sign Out</a></li>
 					</c:when>
 					<c:otherwise>
-						<li><a href="<c:url value="/account/signin"/>">Sign In</a></li>				
-						<li><a href="<c:url value="/account/register"/>">Register</a></li>				
+						<li><a href="<c:url value="/account/signin"/>">Sign In</a></li>		
 					</c:otherwise>
 				</c:choose>
 			</ul>
@@ -26,7 +25,6 @@
 					<li><a href="<c:url value="/"/>">Home</a></li>
 					<li><a href="appointments">Appointments</a></li>
 					<li><a href="owners">Owners</a></li>
-					<li><a href="pets">Pets</a></li>
 				</ul>
 			</div>
 		</div>
diff --git a/org.springframework.samples.petclinic/src/main/webapp/WEB-INF/spring/mvc-config.xml b/org.springframework.samples.petclinic/src/main/webapp/WEB-INF/spring/mvc-config.xml
index 01be040..8f2b7f1 100644
--- a/org.springframework.samples.petclinic/src/main/webapp/WEB-INF/spring/mvc-config.xml
+++ b/org.springframework.samples.petclinic/src/main/webapp/WEB-INF/spring/mvc-config.xml
@@ -9,17 +9,11 @@
 	<!-- HANDLER MAPPING RULES -->
 	
 	<!-- Maps requests to @Controllers based on @RequestMapping("path") annotation values
-		 If no annotation-based path mapping is found, Spring MVC proceeds to the next HandlerMapping (order=2 below). -->
+		 If no annotation-based path mapping is found, Spring MVC sends a 404 response and logs a pageNotFound warning. -->
 	<bean class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping">
 		<property name="order" value="1" />
 	</bean>
 	
-	<!-- Maps requests to @Controllers based on controller class name convention; e.g. a request for /hotels or a /hotels sub-resource maps to HotelsController
-	     If no class mapping is found, Spring MVC sends a 404 response and logs a pageNotFound warning. -->
-	<bean class="org.springframework.web.servlet.mvc.support.ControllerClassNameHandlerMapping">
-		<property name="order" value="2" />
-	</bean>
-
 	<!-- REGISTERED HANDLER TYPES -->
 
 	<!-- Enables annotated @Controllers; responsible for invoking an annotated POJO @Controller when one is mapped. -->
@@ -27,12 +21,12 @@
 
 	<!--  VIEW RESOLUTION AND RENDERING -->
 	
-	<!-- Resolves view names to protected .jsp resources within the /WEB-INF directory -->
+	<!-- Resolves view names to tiles definitions in /WEB-INF/tiles.xml -->
 	<bean class="org.springframework.web.servlet.view.UrlBasedViewResolver">
 		<property name="viewClass" value="org.springframework.web.servlet.view.tiles2.TilesView" />
 	</bean>
 		
-	<!-- Initializes the Apache Tiles 2 system -->
+	<!-- Initializes the Apache Tiles CompositeView system -->
 	<bean id="tilesConfigurer" class="org.springframework.web.servlet.view.tiles2.TilesConfigurer" />
 
 	<!-- Configures Apache Commons Fileupload -->
-- 
GitLab