Do you know a better template engine than FreeMaker or Velocity?
feedback
|
|
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. | |||||||||||||||||||
feedback
|
|
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. | ||||
|
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. | |||||||||
feedback
|
|
StringTemplate is a template engine I'd like to try out someday: | |||
|
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. | |||
|
feedback
|
|
| |||
|
feedback
|
|
Per your original question title:
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. | |||
|
feedback
|
|
I'd recommend jmustache (https://github.com/samskivert/jmustache). It's a Java implementation of mustache(http://mustache.github.com/) | |||||
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). | ||||
|
feedback
|
|
Coming from the future, I'd like to introduce an new high performance, Razor like syntax template engine for Java: Rythm:
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 | ||||
|
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:
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. | |||
|
feedback
|
|
I'd add one more criteria to Rob Williams' excellent answer above:
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:
| |||
|
feedback
|
|
Another alternative: Groovy Templates. This allows you to use arbitrary Groovy code (very Java-like) within the templates. | |||||
feedback
|
|
| |||
|
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. | |||
|
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. Have fun, | |||
|
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. | ||||
|
feedback
|
|
Struts Tiles works for us, but FreeMaker does seem to have a pretty nice implementation. | |||
|
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 | |||
|
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) | |||
|
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!
NullPointerException is never an issue. If-null defaults can be built right into the tag like so: {~tag:N/A} java
template
output
| ||||
|
feedback
|
|
Try this one http://gwtapp.org/ | |||
|
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). | |||||||||||||||||
feedback
|