Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What alternatives exist to Sitemesh to help layout JSP/JSTL page footers/headers in a Spring MVC app?

I've tried excluding certain pages from my Sitemesh decorator but it doesn't seem to follow its own logic:

<decorators>
    <excludes>
        <pattern>/register</pattern>
    </excludes>
</decorators>

What alternatives exist to Sitemesh that could serve as a drop-in replacement in a Spring MVC app that uses mainly plain JSP/JSTL?

like image 866
Popcorn Avatar asked Nov 14 '22 00:11

Popcorn


1 Answers

Have you tried tiles (http://tiles.apache.org/)? I have used it with spring mvc (but freemarker and not jsp)..

like image 64
Lol Avatar answered May 01 '23 04:05

Lol