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 template engine with iteration, bifurcation, markup alike and that takes a string for template input rather a file.

That's because I have my own way to supply the input template, and is not for a file.

Also it's have to be opensource.

Do you know something like this?

share|improve this question
possible duplicate of Suggestions for a Java-based templating engine? – ripper234 Nov 22 '11 at 15:18

7 Answers

up vote 11 down vote accepted

I've recently used StringTemplate and it seems pretty good, open source, and requires a Reader as template input, so providing a StringReader isn't difficult.

share|improve this answer
1  
Take into account that StringTemplate enforces model-view separation so far that it even intentionally doesn't support comparison in <if> expressions. – Vadzim Aug 29 '12 at 7:43

Try FreeMarker. It is flexible and has good documentation. I have used it in the past and had no problems.

share|improve this answer

I'd like to suggest you Thymeleaf. Here you have a comparison with JSP.

share|improve this answer

There is no such things called best, just proper solution to certain problem. I'd like to introduce my work: Rythm template engine, which is a lightweight and super fast template engine in Java using the clean Razor like syntax. Rythm has rich features and supports page layout/inheritance, customized tags (either in template or java class), dynamic reload at dev mode and much more.

The API is simple:

  1. render with inline string:

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

  2. render with template file:

    String output = Rythm.render("hello.txt", "world");

EDIT:

The latest version (1.0.0-20120703) provides an new feature called String interpolation mode which allows you to omit the render argument declaration for simple template, hence now you can do something like:

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

This simplicity makes Rythm a good replacement for String.format() in many cases. And did I mention that it's 2x faster than String.format()?

Updates 16 Apr 2013

Checkout the interactive Rythm Fiddle site to get an idea of the Rythm syntax.

share|improve this answer

Check out velocity . Even if at first look at seems to be file-based, it can be used with templates from any source, even strings.

share|improve this answer

Shameless self-plug.

The Chunk Java template engine can do this. And a lot more.

Chunk c = new Chunk();

// The template can be a string in your code (ick) or loaded from elsewhere
String myTemplate = "This is my template with {$tags} and <html>";

c.append(myTemplate);
c.set("tags", "Glorious tags!");

String output = c.toString();
share|improve this answer
When I look for template engines, it's important to me that there's at least a plugin for it to work with my IDE of choice, which is Netbeans. Are there any plans for making a Netbeans plugin to add support for Chunk template syntax? – damd Jan 14 at 8:46
Sorry, nothing in the works for netbeans. I will take a look when I get some free cycles. – Tom McClure Jan 15 at 17:51

..... Developed an comment tag thing with one tag to glue java action classes and control it with the attributes. Core is a rekursive template action. Developed it to generate complex java environment (hibernate/spring/Castor) from two Excelsheets. Templates can be executed directly without any sources, if you dont want to extend the framework.

Or course you can integrate it also in your java-application to separate code from result view. (www.j-tree.org),

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.