Do you know a better template engine than FreeMaker or Velocity?
|
6
|
|||
|
|
|
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 |
||
|
|
|
|
If you are investigating template engines, then I suggest that you have three primary questions:
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. |
|||
|
|
|
|
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). |
||
|
|
|
Another alternative: Groovy Templates. This allows you to use arbitrary Groovy code (very Java-like) within the templates. |
||
|
|
|
|
Struts Tiles works for us, but FreeMaker does seem to have a pretty nice implementation. |
||
|
|
|
|
I used StringTemplate in the Java Shop I worked before.
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. |
||
|
|
|
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. |
||
|
|
|
StringTemplate is a template engine I'd like to try out someday: |
||
|
|
|
|
You can take a look at this link. |
||
|
|
