tiles.xml
Home
/
org.springframework.samples.petclinic /
src /
main /
webapp /
WEB-INF /
tiles.xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE tiles-definitions PUBLIC
"-//Apache Software Foundation//DTD Tiles Configuration 2.0//EN"
"http://tiles.apache.org/dtds/tiles-config_2_0.dtd">
<tiles-definitions>
<!-- ABSTRACT PAGE TEMPLATES -->
<definition name="page" template="/WEB-INF/layouts/page.jsp"/>
<!-- PAGES -->
<definition name="home" extends="page">
<put-attribute name="title" value="Welcome to Petclinic" type="string" />
<put-attribute name="content" value="/WEB-INF/home.jsp" type="template" />
</definition>
<!-- APPOINTMENTS PAGES -->
<definition name="appointments" extends="page">
<put-attribute name="title" value="Appointment" type="string" />
<put-attribute name="content" value="/WEB-INF/appointments/calendar.jsp" type="template" />
</definition>
<!-- OWNERS PAGES -->
<definition name="owners" extends="page">
<put-attribute name="title" value="Owner Search" type="string" />
<put-attribute name="content" value="/WEB-INF/owners/search.jsp" type="template" />
</definition>
</tiles-definitions>