Browse Source
Move spring-webmvc-tiles3 content to spring-webmvc, and create a spring-webmvc-tiles2 module with Tiles 2 support. Its allows View Resolution to configure Tiles 3 instead of Tiles 2. Issue: SPR-7093pull/589/merge
Sebastien Deleuze
11 years ago
committed by
Rossen Stoyanchev
33 changed files with 63 additions and 42 deletions
@ -0,0 +1 @@
@@ -0,0 +1 @@
|
||||
net.sf.jasperreports.awt.ignore.missing.font=true |
@ -0,0 +1,20 @@
@@ -0,0 +1,20 @@
|
||||
<?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> |
||||
<definition name="base.definition" |
||||
template="/WEB-INF/jsp/layout.jsp"> |
||||
<put-attribute name="title" value="" /> |
||||
<put-attribute name="header" value="/WEB-INF/jsp/header.jsp" /> |
||||
<put-attribute name="menu" value="/WEB-INF/jsp/menu.jsp" /> |
||||
<put-attribute name="body" value="" /> |
||||
<put-attribute name="footer" value="/WEB-INF/jsp/footer.jsp" /> |
||||
</definition> |
||||
|
||||
<definition name="contact" extends="base.definition"> |
||||
<put-attribute name="title" value="Contact Manager" /> |
||||
<put-attribute name="body" value="/WEB-INF/jsp/contact.jsp" /> |
||||
</definition> |
||||
|
||||
</tiles-definitions> |
Loading…
Reference in new issue