Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've taken quite a shine to the Spring Framework and would like to get into it a bit more. I have noticed that aside from plain vanilla JSPs there are various template engines for use with Spring MVC, such as Velocity and Freemarker. Are there others? Which one do you recommend?

share|improve this question
Spring comes with quite a good JSP tag library to use. Check it out in Spring's Web MVC documentation: static.springframework.org/spring/docs/2.5.x/reference/… (the address is for 2.5, the library's existed since 2.0) – MetroidFan2002 Nov 20 '08 at 5:30
@MetroidFan2002 - You should post this as an answer, because it does qualify as more than a comment to the question. – Spencer Kormos Nov 25 '08 at 17:07

11 Answers

up vote 20 down vote accepted

I prefer Velocity to Freemarker for the clarity/simplicity of the syntax and professionalism of the community. I also get a lot of mileage out of the VelocityTools library. Freemarker can be a bit more intimidating but is also totally solid. It lacks VelocityTools, but makes up for it with native support for JSP tag libraries.

Either of these template languages is a great improvement over JSP/JSTL, if you ask me.

share|improve this answer
Totally Agree! I avoid anything that supports JSP just so my devs can't try and use it. Velocity FTW – Pete Sep 19 '08 at 23:53
1  
Disagree entirely. If you use the Spring Form tags, JSP development couldn't be easier. – MetroidFan2002 Nov 20 '08 at 5:28
2  
Velocity also has form tags (macroses) for Spring that make data binding for forms easier. – serg Nov 16 '09 at 17:23
Velocity does not have native support for various kinds of encoding, e.g. HTML, URL, XML, JavaScript, etc. FreeMarker does have all of them. It is possible, however to use VelocityTools for this, but it cannot operate with them in non-web environment because depends on Servlet-related object. For instance, if you want to generate an e-mail with HTML content securely encoded, you'll fail with Velocity but succeed with FreeMarker. – Jiří Vypědřík Jan 10 '12 at 8:26
Huh? VelocityTools has never required a servlet environment for most of its tools, especially the EscapeTool (which is in question here). – Nathan Bubna Jan 11 '12 at 17:47
show 4 more comments

I am Thymeleaf's author, and I would like to recommend you to have a look it.

Although it is not exclusively SpringMVC-oriented (it can be used without this library), I designed it from the ground up to be a nice replacement for the current view options in Spring MVC: Velocity, Freemarker... and especially JSP.

Thymeleaf is easy to use, elegant, XHTML and HTML5-compatible, extremely extensible, and it allows you to create "Natural Templates", this is, templates that are perfectly browser-displayable pages --great for prototyping!--, as you can see in the "Thymeleaf vs JSP" article already mentioned in other comment.

There is also a comprehensive set of tutorials on the web site, and also some small articles that will help you understand the basics.

Have a look at it, and I honestly think you will never come back to JSP ;-)

Regards.

share|improve this answer

I have not investigated using it with Spring yet, but I would not use any template engine but StringTemplate (see http://www.cs.usfca.edu/~parrt/papers/mvc.templates.pdf for why).

If you are set on Spring, then I would figure out how to integrate it with StringTemplate, although I suspect that it has already been done before.

share|improve this answer
1  
Those finding this post in the future might want to look into spring-stringtemplate, which is (just about) working for me so far. – alexmuller Dec 2 '11 at 23:42

If you like the Scala programming language you might like Scalate as it allows you to use powerful Scala expressions instead of the limited JSP/JSF/JSTL EL expression language - while being completely statically typed so that templates are checked at edit/compile time for errors.

The Scaml templates in Scalate let you write really DRY templates (Rails fans tend to love Haml and Scaml is the Scala port of Haml) - though if you're used to JSP you'd probably be better off starting with Ssp templates in Scalate which are JSP-like.

share|improve this answer

We have been using Sitemesh template engine in our spring web app and we are very happy with it. Reduces lot of maintenance work. An example of how to integrate with spring can be found in this blog

share|improve this answer

I would also like to add that your choice of template engine depends on the type of the output as well. If you know that your app will only have HTML output, I would suggest to stick with the standard JSP/JSTL. If your app requirement is also Excel, PDF or other format output, I would recommend Freemarker or Velocity. I personally like Freemarker better.

share|improve this answer
I find that wanting HTML output is a good reason to avoid JSPs. They're a pain to write secure code in. – Dominic Mitchell May 15 '09 at 0:09

When you say Spring Framework are you referring to Spring MVC or just the core Spring concepts (dependency injection, AOP, etc)?

If it is really the concept of Spring you like then I recommend checking out Stripes. Stripes makes using Spring dependency injection really easy and offers a lot in the way of writing controllers and views. Unlike Spring MVC it is configured primarily through annotations which is something you will either love or hate.

On the topic of template engines it really boils down to identifying what exactly you do not like about jsp in the first place. Personally I find Java web development is hindered more by the controller frameworks than the templating language. Stripes is the best I have tried so far, but compared to Django and Rails it still feels a little cumbersome.

share|improve this answer
The question was about a templating framework, not a web framework, so I think the Stripes suggestion is irrelevant. Also, the comment that Spring MVC is not configured via annotations is out-of-date. Spring MVC can also be configured this way since 2.5. – Don Oct 23 '08 at 16:32

Try Spring Modules, which has support for web template engines like Freemarker, Groovy, Velocity, WebMacro and XSLT.

share|improve this answer

Getting away from JSPs and using a templating framework is most definitely the way to go. I've used Velocity, but recently I've discovered Thymeleaf:

It fits very nicely with Spring. There is a nice tutorial, Spring MVC view layer: Thymeleaf vs. JSP at the site showing why you would want to use thymeleaf instead of JSPs.

share|improve this answer

Not exactly answering your question since it isn't a template engine, but you may want to look at Grails. It uses Spring MVC so the feel would be familiar. By default the views are Groovy Server Pages (.gsp) and I have found them very intuitive.

share|improve this answer
Grails uses Sitemesh. – Taylor Leese Mar 21 '10 at 6:40

It all goes down to what you need. For my current project, I am making an heavy use of FreeMarker because it was the framework that was tailored for the job I had to do. There is no silver bullets: You have to try them and choose one for yourself (And your team).

I've heard some nice reviews about Stripes from my colleagues who are actually doing some Web-Related Development.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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