I am writing a Spring MVC application and looking for a way to do layouts in views. The only option that i see is Apache Tiles, which i have used before and know how painful it is to maintain its configuration.

Are there any good alternatives? I looked at SiteMesh and Spring Surf both seem to be dormant.

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

I faced the same dilemma about a month ago. I have been a seasoned developer using apache tiles, and I wanted to try something different.

I did some research and found that Spring MVC has some integration with freemarker and sitemesh. I decided to give both a shot.

Tiles seems to have the most active community.

You can also try a pure velocity implementation.

To sum up, my project ended up reverting back to tiles. Tiles is a robust templating framework, and once you understand it's powers, I will find it hard to find a good replacement. Also, if you are already skilled in apache tiles, I find the benifits of switching frameworks (if any) do not justify the learning curve required to picking up sitemesh/freemarker

http://www.sitemesh.org/overview.html

http://freemarker.sourceforge.net/

link|improve this answer
I tried Scalate, but no good. You are right, its not worth the effort learning another framework when Tiles can fulfill all of my needs. – Aravindan R Dec 20 '11 at 2:00
feedback

Tiles and Sitemash are very different in what they are designed for.

  • Tiles is used as a part of your application desinged to use tiles.
  • Sitemash is desinged as a filter in front of one or several already existing applications. Where you want to change the output of the applications (for example (a very easy task) relace the logo, add an extra menu option)

On the other hand I do not see where you have so much xml. You have to write one xml block for each page to define wich layout it need. (If you still configure a list of files containing the tiles configurations then have a look at `org.springframework.web.servlet.view.tiles2.TilesConfigurer".)

If you want to get rid even of this files, then you should may think more of extending tiles then using an other framework.

link|improve this answer
feedback

IMO SiteMesh and Tiles are both pretty good approaches, although newer Tiles releases add a lot of untapped power--it's more than a simple templating mechanism.

If you're finding maintenance an issue I'd consider wrapping it up in a thin layer of abstraction using either a DSL or light GUI, either can make a big difference.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.