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

I am looking for a lightweight template engine in Java. I want to be to give my users the ability to define a template in the line of:

"Some arbitrary text ${some_function(Some more text ${1}, function_param)} whatever"

And the template will be compiled and filled in runtime. Requirements are:

  • Template accepts array of objects as parameters (and extracts them using expressions like ${0} when 0 is the number of parameter)
  • Template has functions that modify their contents. For instance: ${trim(^^^bla bla ${0})} with argument ["bla^^^"] will return "bla bla bla" (^ = space. The site strips my extra spaces)
  • Functions can accept parameters. For instance ${substring(Whatever, 4, 8)} will return "ever".
  • Functions can be nested. A function operates on it's data after the inner function has been evaluated.
  • Functions are extensible, I want to be able to define my own.
  • My software is embedded in other production systems, so it has to be as small as possible (I don't want a gigantic framework with a tiny template engine that does what I need).
  • From that reason, performance is an issue. I can afford slow compilation time, but template-filling time has to be as fast as possible.
  • We use javaSE 1.4. Can't go higher, it's one of our features.

I don't think it's a very complicated requirement so I could write something like that myself, BUT since this is really a marginal feature in our product, I am reluctant to spend time on it, plus it seems like such a common use case, I'm thinking someone must have done this before.

I've looked at template-engines like Velocity and StringTemplate and FreeMarker. I think they are designed to produce really large documents with complicated templates, when performance is not an issue. I need something small, simple and fast.

Ideas?

share|improve this question
Don't know why you did not like velocity, freemarker, and stringtemplate. I think stringtemplate is the smallest and easiest to use. All 3 are light weight and simple to use. Just stick with one template, I recommend velocity. It has all the features you are looking for. For what you are doing you need to add only 3 dependency. jakarta-commons dependency exists in most project so you may not even have to add it. – surajz Sep 25 '10 at 13:17
possible duplicate of Suggestions for a Java-based templating engine? – ripper234 Nov 22 '11 at 15:17

10 Answers

up vote 9 down vote accepted

Velocity from Apache is a wonderful templating engine.

share|improve this answer
Isn't it a bit too heavy for my purpose? I mean, the common use case is something in the lines of my example. Not more than a 200 characters template... – Hila Sep 25 '10 at 13:12
3  
Why should the size of the template engine be affected by the size of the template? – duffymo Sep 25 '10 at 13:55
What makes you think Velocity is heavyweight? I find it incredibly simple to use, fast, and powerful. – matt b Sep 25 '10 at 15:46
Is exists faster solution? Servlet generate ~500 docs in min, but i need 1000 at least. – den bardadym Mar 9 '11 at 9:20
1  
What about all the side effects - like ability to call arbitrary methods in java code - that Velocity allows? Coming from Django I am shocked that something like this is even used! – drozzy Apr 14 '11 at 20:05
show 6 more comments

Try jade4j - a jade implementation written in and for Java. jade4j's intention is to be able to process jade templates in Java without the need of a JavaScript environment, while being fully compatible with the original jade syntax.

share|improve this answer

http://freemarker.org/ is nice and easy to use.

share|improve this answer

You should look at StringTemplate again.

UPDATE: As of 2012 StringTemplate appears to be poorly maintained. The examples on the web site include sample code that only works with an older version of StringTemplate. Understanding the new version is difficult without any form of documentation on the new version. I have been watching this site for a year now, and no updates to the documentation have been made.

share|improve this answer
I think that's because StringTemplate is sort of a "Byproduct" for AntLR, and it's right, I also tried the new version a while ago and it had no doc whatsoever. I was on the ST mailing list for a while and it had always lots of traffic. Would be surprised if that just went down the river.. – zedoo Jul 5 '12 at 13:09
3  
No doc for v4? What's this? antlr.org/wiki/display/ST4/StringTemplate+4+Documentation – The ANTLR Guy Sep 24 '12 at 18:27
there you go :) – zedoo Oct 2 '12 at 9:02

I am surprised no one mentioned mustache

There is an obvious advantage to using this because we can use the same templating engine and syntax in many languages. No need to learn a new templating language for the browser.

share|improve this answer

I would recommend one of these two:

There are also bunch of other options (Spring EL, JBoss EL, Commons EL, OGNL) but I would consider them to be too heavyweight and slow for your needs (they all depend heavily on reflection).

In any case, you should create your own test and check the performance.

share|improve this answer
Cool thing about MVEL is that all you got to do is drop the JAR on your classpath. No dependencies! – Lucas Pottersky Apr 3 '12 at 23:36

I guess if you didn't like the big guns like Velocity, you could look at Google Closure Templates for Java.

It's pretty simple to use, but the integration with your tools is a bit... manual, for now.

See the "Concepts" section of the documentation I link to to learn what functions are readily available and how you can develop your own.

(sorry, being a new SO user, I can only post one link per answer and cannot link directly to all the things I mention. But you can jump there from that link by looking around the docs).

share|improve this answer

Rythm is a Java template engine using Razor like syntax. It however provides a very lightweight way to do String interpolation:

String result = Rythm.render("hello @who!", "world");

This simplicity makes Rythm a good replacement for String.format() in many cases. Please be noted that Rythm.render is 2x faster than String.format

For comprehensive template you can use the same interface to pass in the file name:

Map<String, Object> args = new HashMap<String, Object>();
args.put("who", "world");
...
String result = Rythm.render("myTemplate.html", args);

Please visit http://play-rythm-demo.appspot.com/ for the full feature set demonstration.

There is Play!Framework plugin created on Rythm engine, you can find documentation on how to use Rythm from there: http://www.playframework.org/modules/rythm

You can download Rythm from https://github.com/greenlaw110/rythm/downloads

share|improve this answer
Does it work on Google Appengine? – husayt Apr 18 '12 at 2:06
Yes, the latest version now works with GAE. Check the gae demo at github.com/greenlaw110/play-rythm/tree/master/samples-and-tests/…. A running instance on GAE is at play-rythm-gae-demo.appspot.com – green May 5 '12 at 2:22
Now we have a feature demo app running on GAE: play-rythm-demo.appspot.com – green May 21 '12 at 4:21

I would recommend thymeleaf its simple java template and the advantage is you can view the template in browser. It's got good integration with Spring and has active development/enchancement. I think Apache Velocity had a last major release in 2010 and it's a steep learning process and you can't view your .vm (velocity extension) in browser (static rendering).

Also an eclipse plugin is available at https://github.com/ultraq/thymeleaf-eclipse-plugin

share|improve this answer

If your program deploys in Java EE 6, then the Expression Language in JSP and JSF Facelets can do all this out of the box.

If not, then I believe you can get the Expression Language jars from the latest Glassfish and figure out how to glue them with your own application.

share|improve this answer
I've edited my post. We use javaSE 1.4 and we can't go higher since it's one of our features. I'll look at the Glassfish jars, though. – Hila Sep 25 '10 at 13:11
You could consider retroweaving the jars. Gives Java 5 facilites in a Java 1.4 runtime. – Thorbjørn Ravn Andersen Sep 25 '10 at 13:13

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.