Currently I'm using Mustache templates ( http://mustache.github.com/ ) both on the client and server-side, using javascript and java implementation respectively.

However, there are some limitations in Mustache which the relatively new Handlebars.js ( http://www.handlebarsjs.com/ ) tries to overcome.

However as far as I see it handlebars only has a javascript implementation as of yet. Anyone knows of an (experimental) java-implementation of Handlebars?

link|improve this question

feedback

3 Answers

I've not seen a Java implementation of handlebars as yet. Handlebars was originally developed by Yehuda Katz, predominantly a Ruby and JavaScript developer hence the JavaScript and Ruby implementations of it. Handlebars is an extension of the mustache syntax and thus not part of the mustache standard.

link|improve this answer
I knew how Handlebars came into existence, thanks. I'll keep this question open for a while, to see if anything new pops on the radar. – Geert-Jan Sep 21 '11 at 20:18
feedback

In theory handlebars could be compatible with rhino. Our team uses rhino in our java stack to compile less css files on the server. This person looks to have added rhino support to handlebars:

https://github.com/wycats/handlebars.js/pull/49

although it has not been pull into the repo yet.

link|improve this answer
feedback

Handlebars works well with Rhino on the simplest template example :)

https://github.com/MathieuLorber/Handlebars.js-Rhino-test

I haven't gone further for the moment...

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.