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

link|improve this question
2  
Are there any improvements in particular you are looking for? – jan.vdbergh Oct 6 '08 at 13:28
feedback

24 Answers

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|improve this answer
3  
You forgot the most important: NO SIDE EFFECTS! – erickson Oct 6 '08 at 20:58
1  
for Java this is the correct answer! – Jarrod Roberson Mar 30 '10 at 16:51
I am bit divided on this one -- while it has its benefits, it seems to lack some things that are essential for certain kinds of templating (esp. HTML page composition): for example, there does not seem to be an easy way to do straight inclusion of content from other files (like #include in C etc) – StaxMan Jun 18 '11 at 0:13
1  
@alvi, if you're not happy with this behavior, its in ObjectModelAdaptor.java:67. Just create your custom model adapter on these beans. See here: antlr.org/wiki/display/ST4/Model+adaptors – Andre Bossard Dec 2 '11 at 12:31
1  
@andre, exactly, ObjectModelAdaptor just has to chain the original exception rather than throwing a new one. The exception won't show on a web page, it's just for the log file. I didn't know about custom model adapters, thanks for the tip. – alvi Dec 2 '11 at 13:45
show 5 more comments
feedback

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|improve this answer
feedback

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|improve this answer
1  
+1: I've had good results with FreeMarker, and don't understand the downvote on this. – Jim Ferrans Oct 16 '09 at 4:49
+1 for Freemarker – Andy Pryor Aug 2 '11 at 15:22
Downvote was probably because the OP asked for something other than FreeMarker and Velocity – Tim Apr 18 at 16:42
feedback

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

http://www.stringtemplate.org/

link|improve this answer
feedback

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 which are particularly good for XML/HTML (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.

link|improve this answer
feedback

You can take a look at this link.

link|improve this answer
feedback

Maybe http://www.thymeleaf.org/

link|improve this answer
feedback

Per your original question title:

Suggestions for a Java-based templating engine?

I shamelessly recommend a micro Java DSL I wrote for generating XML/HTML called JATL : Java Anti Template Language

I offer the recommendation since you still have not marked a correct answer.

link|improve this answer
Great to see this lib, just what i need! – Mike Apr 12 at 12:16
feedback

I'd recommend jmustache (https://github.com/samskivert/jmustache). It's a Java implementation of mustache(http://mustache.github.com/)

link|improve this answer
1  
+1 As the author of JATL (jatl.googlecode.com) I have to agree with Mustache is the way to go if you really want to do true templating. That is templating should be logic-less. Otherwise you should just use Java (and my lib :) ). – Adam Gent Apr 12 at 12:29
feedback

I recently created an alternative to velocity/freemarker/jsp called Cambridge. It is open source with apache2 license and brings a new approach to html/xml templating. It supports template inheritance, it is extensible and my own benchmarks show that it performs better than Velocity and Freemarker (comparison).

link|improve this answer
feedback

Coming from the future, I'd like to introduce an new high performance, Razor like syntax template engine for Java: Rythm:

  1. Very fast, 2 to 3 times faster than Velocity
  2. Clean Razor like syntax: @if (user.isAdmin) {<div class="admin-panel">...</div>} else {<div class="user-panel">...</div>}.
  3. Rich features, support user defined tag, java extension, template inheritance, hot-reload on dev mode etc.
  4. Easy to use API: Rythm.render("@args String who;Hello @who!", "world"); or Rythm.render("hello.txt", "world");
  5. Strong typed. Your templates get compiled before hand. But don't worry, everything happens on the fly, there is no need to manually generate source code and compile it. Just call the API to get your render result

Check it out at http://rythmengine.com/.

A brief introduction to Rythm: http://software-lgl.blogspot.com.au/2012/03/rythm-easy-to-use-high-performance-java.html

link|improve this answer
feedback

I can recommend XTC. It's a port of Facelets, that doesn't depend on JSF. Apart from some minor changes to schemas declared, it actually uses identical syntax. It's stateless, so it doesn't support features like components.

Its biggest advantages are:

  • Previewability, just like in Facelets
  • You can do both: composition and decoration, just like in Facelets.
  • It's pure XML, so it's actually best fit for website templating.

Neither Velocity nor Freemarker has any of those. StringTemplate supports 2nd point, but what put me off, were those group files and inheritence between them. I don't find it particularily useful in a field of webapp templating. I think it's been developed with language parsing in mind.

The solution is actually pretty stable, despite troubles actually getting to compile it. I spoke to the author and hopefully he will publish *.jar's as well. I also wrote a support for Spring MVC.

link|improve this answer
feedback

I'd add one more criteria to Rob Williams' excellent answer above:

  • Is the template language understandable to UI developers? Can they grasp the syntax and use the full feature set without delving into the code behind the template (the model and controller layers in a MVC architecture)? Can they work independently from the coders, or do they need to wait for them to support UI changes?

This point is important on larger projects, where you'll typically have separate coder and UI teams. Pick the wrong template system and you'll have a frustrated UI team and all of the inefficiencies that this leads to.

Having used various template engines before, including Perl's HTML::Template, Python's Cheetah and more recently Django's template engine, I have to say Django gets it pretty much perfect, so if you're not using Python + Django, you could use there system as a feature comparison:

  • Easy variable placement with {{variable}}
  • Dot notation to access members {{variable.upper}}
  • Filters to modify variables {{variable|date:"M Y"}}
  • Easy to understand control flow statements
  • Template inheritance
  • Easy to extend with custom features
link|improve this answer
feedback

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

link|improve this answer
1  
and Groovy is very very slow compared to Java – Jarrod Roberson Mar 30 '10 at 16:52
feedback

I prefer MiniTemplator. It is very simple yet powerful: you only have variable-placeholders and block-markers in your templates. Program logic like conditional blocks and loops are done in your host language (java), so you don't have to learn a new template-language.

MiniTemplator is available for Java, VB and PHP.

link|improve this answer
Minitemplator is awesome!! exactly what I needed in my project! – ufk Jun 21 '11 at 12:54
feedback

If you want some template engine different to all scripting languages try Snippetory. It's based on passive templates, which means all(!) the logic is written standard java classes, with standard java IDE. Code completition, navigation, testing debugging. Everything is where you know it. No crude editor with basic feature set.
It has a strong abstraction layer, with formatting, escaping, and some template specific operations like delimiters. The syntax is very simple, and can be switched. This allows useable templates with java script, or for other languages like SQL for example.
It has an reflictive API which allows for generic processes, an integrated repository for template code management, and the templates are free of context which allows massive re-use. See metaphor repository for more information.
After so much features you'll be amazed how simple it is. Be open for new ideas. Give it a try.

Have fun,
Bernd

link|improve this answer
feedback

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

You may want to refer this site for a comparison matrix of various engines.

link|improve this answer
feedback

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

link|improve this answer
feedback

I am not recommending any templating language. But i just wanna get some inputs on how good a templating language should be. Basically whatever templating language you chose wont let you write dry code as you would do with other layers/tiers. The view logic is the most frustating to write down. I have few cluttered template scripts that are really really hard to maintain just because of few basic problems: 1. Grouping say we need to make groups out of list based on certain criteria. 2. Transforming data for example i need to say yes or no for boolean instead of true or false 3. This one is really really painful when you design navigations like you wanna disable link that point to current page. 4. You wanna show custom text for missing attributes etc...

I dont think any template language lets you cleanly do any of this. I am a novice may be its just my problem. But this problem is repeating on and on. I think these things shouldnt be handled anywhere else. And there are no best practices to do view logic too. Even if you try to follow all object Calisthenics with your java code, you end up writing very bad template logic. I wanna develop this conversation to yield some good inputs on how good a template engine should be

link|improve this answer
feedback

If you look for something light to generate a html page, take a look at http://www.source-code.biz/MiniTemplator/ (two .java files in 65kb for the library)

link|improve this answer
feedback

I'm biased, but I have gotten a lot of mileage out of my own Java template engine Chunk.

Chunk meets all the criteria people have mentioned that make for a good template engine. No side effects. The curly-brace {~tag} syntax pops nicely against a background of <AngleBrackets> but doesn't put a crimp in your javascript'ing.

Chunk handles nested conditionals, looping and easy value-tweaking elegantly (via sprintf, regex, etc). It's a template engine, not a scripting language, so it doesn't try to do too much (eg, no manipulating variable state, just filter transformations).

Chunk matches Velocity and Freemarker feature-for-feature (macros, includes, filters) other than where it philosophically parts ways by not encouraging in-template scripting. Themes can be layered and I recently added a lightweight localization framework. Multiple Chunk template snippets may be grouped in a single file.

And Chunk is fast, free and open-source. Give it a try!

{!-- Being able to leave comments is key. --}

{^loop on ~widgets as w}
<div>
  <span>Widget Name: {~w.widget_name}</span>
  <span>Widget Price: {~w.widget_price|sprintf($%,.2f)}</span>

  {^if (~w.widget_parts)}

   <div>
   {^loop on ~w.widget_parts as p}
    <div class="part">Part {~1}. {~p.part_name}</div>
   {/loop}
   </div>

  {^else}

    <div> This widget has no parts. </div>

  {/if}

{/loop}

NullPointerException is never an issue. If-null defaults can be built right into the tag like so: {~tag:N/A}

java

Chunk c = theme.makeChunk("template_name");

String title = null;
c.set("title", title);        // this creates an empty-string tag rule

String name = null;
c.setOrDelete("name", name);  // this forces the tag to be undefined

out.print( c.toString() );

template

This is my template.  Hi {~title} {~name:there}!

output

This is my template.  Hi  there!
link|improve this answer
feedback

Try this one http://gwtapp.org/

link|improve this answer
feedback

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|improve this answer
8  
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 '09 at 4:44
1  
XSLT is a pain to use, any simple task requires lots and lots of xml. – mP. Dec 31 '09 at 12:04
1  
I also don't recommend XSLT, I've been doing e-commerce project in Java with XSLT transformations to produce HTML. We used Castor library to produce XML docs. XSLT was horrible pain and overkill, lines and lines of XML code. Really it is not worth to get into it. – Ćukasz Korzybski Mar 11 '10 at 19:38
3  
Conway's game of life is Turing-complete as well, but I wouldn't recommend using it as a template engine. – Greg Case Oct 27 '10 at 18:42
feedback

Your Answer

 
or
required, but never shown