I am currently researching templating frameworks that have implementations for both JavaScript and Grails/Java for an upcoming project that will render templates both within a Grails application and on the front end.

The requirements are as follows:

  • implementations in both JavaScript and Grails / Java
  • front-end and back-end rendering produces the same output given the same JSON data
  • straightforward to author and maintain by a team of developers
  • testable on both front-end and back-end
  • can handle nested JSON objects without too much trouble
  • XSS protection on the front-end

So far, I have investigated Mustache which has JavaScript and Java implementations, and Haml which has JavaScript and Grails implementations. (I would link the implementations, but as a new user I am only able to add 2 links.)

I would be grateful for any experience others have had with these, and any recommendations for other frameworks that may fit the above needs.

link|improve this question
feedback

3 Answers

Did you look at Closure Templates? There's also a Grails plug-in. It meets most if not all your requirements.

link|improve this answer
No, I wasn't aware of Closure Templates. I'll be sure to look at that. – froots101 Aug 18 '11 at 6:07
feedback

I've used both Mustache and Haml at one point or another. If you hadn't mentioned either, I would probably have recommended Mustache as a pure templating solution. Haml is great, but it is more a replacement for authoring html (i.e. you don't write html any more, you write haml). Mustache on the other hand is all about templating

I think either one would be a fine choice. Mustache.js is mature, the java implementation is probably less so, but it has been around for a little while, so you're probably ok in that regard. I am not sure how mature the javascript or grails Haml implementations are.

I'd be leaning towards Mustache if all you're after is templating, it is very good although it takes a little while to get used to the whole {{}} syntax. But if you're attracted to Haml as a replacement for writing HTML it might tip you in that direction.

link|improve this answer
feedback

ExtJS has a complete library of widget that you can build you app with. It works nicely with Grails as JSON data provider.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.