vote up 7 vote down star
6

Do you know a better template engine than FreeMaker or Velocity?

flag
Are there any improvements in particular you are looking for? – jan.vdbergh Oct 6 '08 at 13:28

9 Answers

vote up 0 vote down

WebMacro is another good java based template engine. There are many other good python language based template language.

We you many want to refer the following website to check the comparison matrix of various template engines

http://en.wikipedia.org/wiki/Template_engine_(web)

Arun ~ arunky

link|flag
vote up 3 vote down

If you are investigating template engines, then I suggest that you have three primary questions:

  1. Does it support the language/platform that you are targeting (but maybe you should consider changing your target)?

  2. For each template engine, does it restrict you to any particular kind(s) of output (e.g., HTML) or can you generate any string of text? Once you comprehend the power of a template engine, you should/will want to use it everywhere that you manipulate complicated strings of text. The engine, therefore, should not require anything specific to a particular kind of output (like requiring a web server since it only generates HTML).

  3. Does it encourage you to create maintainable templates? This has several aspects to consider. If the engine is so complicated that it makes the task harder instead of easier, then don't bother (throw out XSLT, unless you are specifically translating from XML to XML, for which it was designed). If the engine lets you do ANYTHING beyond pushing simple data into the template, then throw it out. If the engine does not help you organize and modularize your templates, then don't bother. If the engine can't perform well, thereby slowing your application to a crawl, don't bother.

Having applied these criteria in a rather exhaustive search a few years ago, I settled on StringTemplate (and perhaps WebStringTemplate). So far, it is the ONLY engine to pass test 3. It readily passes test 2, but so do most engines. And it passes test 1 for my primary targets of the Python, Java, and .NET platforms (plus more).

I have used StringTemplate on all those platforms, and I have also used XSLT, Velocity, JSP (yuck) and several other engines over the years. StringTemplate wins--no contest.

You can save yourself a LOT of trouble by simply using StringTemplate. If you can't (platform not supported), then compare any candidates that you find to StringTemplate. And take particular note of any template engine that makes no effort to compare themselves against StringTemplate (like FreeMarker)--that is a huge red flag to me.

link|flag
vote up -1 vote down

I'd recommend XSLT. It's extremelly powerful.

XSLT it what Velocity tries to be, done right (it's pure XML, it's a pure functional turing-complete language, etc).

link|flag
XSLT is designed for transforming XML into XML, and it should be used only for that. It is too heavy, too painful, and too limited to use for general templating needs. A template engine should not be Turing-complete, nor should it require XML (too heavy and obtuse). – Rob Williams Jan 28 at 4:44
vote up -1 vote down

Another alternative: Groovy Templates. This allows you to use arbitrary Groovy code (very Java-like) within the templates.

link|flag
vote up 0 vote down

Struts Tiles works for us, but FreeMaker does seem to have a pretty nice implementation.

link|flag
vote up 4 vote down

I used StringTemplate in the Java Shop I worked before.

  • pure Java, lightweight, fast
  • simple to use
  • has formatting filters, which help to reduce application logic
  • a fit for every text based output: JSON, Xml, Html, Css

And the graphic department could learn it quite fast, because its simple.

The documentation is quite basic and doesn't have that many examples. But if you don't figure out a feature, the source-code is easy to read.

link|flag
You forgot the most important: NO SIDE EFFECTS! – erickson Oct 6 '08 at 20:58
vote up 0 vote down

A couple of my coworkers did a big investigation of Java templating engines just a couple weeks ago, and ended up choosing Freemarker. I've been very happy with it for the small amount I've worked with it, and my coworkers (who have done a lot more) seem very happy with it.

link|flag
+1: I've had good results with FreeMarker, and don't understand the downvote on this. – Jim Ferrans Oct 16 at 4:49
vote up 4 vote down

StringTemplate is a template engine I'd like to try out someday:

http://www.stringtemplate.org/

link|flag
vote up 1 vote down

You can take a look at this link.

link|flag

Your Answer

Get an OpenID
or

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