We have a large web-app with hundreds of jsps pages. To avoid repeating markup up blocks we are considering making use of apache tiles. Now it seems messy to have a combination of both
<t:insertTemplate template="/WEB-INF/templates/xxxxx.jsp">
and
<%@ include file="xxxxx.jsp"%>
statements so we are considering converting all includes statements to insertTemplates (whether or not the template includes any tile syntax)
Has anyone had any experience with using tiles 100% for jsp includes?