* Updated Eclipse classpath metadata

* Fixed (or suppressed as necessary) JSP errors in petclinic
This commit is contained in:
Chris Beams
2009-02-14 03:09:59 +00:00
parent fe462916b1
commit da2175c0b7
7 changed files with 50 additions and 7 deletions

View File

@@ -61,12 +61,10 @@
</td>
<td valign="top">
<table>
<tr>
<thead>
<th>Visit Date</th>
<th>Description</th>
</thead>
</tr>
<c:forEach var="visit" items="${pet.visits}">
<tr>
<td><fmt:formatDate value="${visit.date}" pattern="yyyy-MM-dd"/></td>

View File

@@ -4,12 +4,10 @@
<h2>Veterinarians:</h2>
<table>
<tr>
<thead>
<th>Name</th>
<th>Specialties</th>
</thead>
</tr>
<c:forEach var="vet" items="${vets.vetList}">
<tr>
<td>${vet.firstName} ${vet.lastName}</td>

View File

@@ -6,14 +6,12 @@
<form:form modelAttribute="visit">
<b>Pet:</b>
<table width="333">
<tr>
<thead>
<th>Name</th>
<th>Birth Date</th>
<th>Type</th>
<th>Owner</th>
</thead>
</tr>
<tr>
<td>${visit.pet.name}</td>
<td><fmt:formatDate value="${visit.pet.birthDate}" pattern="yyyy-MM-dd"/></td>