Has anyone tried implementing a web application with Clojure ( using Compojure ) and Vaadin ? I had seen an article on using Clojure with JWT for creating web apps. Vaadin is based on GWT so you get a lot of the advantages of GWT ( though Vaadin is completely Server-centric). And Clojure gives the advantage that you can use any Java Based Framework, so what thoughts on the Clojure + Vaadin based web application ?

link|improve this question

48% accept rate
I used JWT as well as Vaadin. very nice but much more community support and documentation for Vaadin – Zubair Aug 27 '11 at 14:43
feedback

3 Answers

up vote 11 down vote accepted

I've created an article in Vaadin Trac wiki describing such integration:

http://dev.vaadin.com/wiki/Articles/ClojureScripting

link|improve this answer
Thanks for this. Will check it out ! – Arun R Jun 16 '10 at 13:17
feedback

GWT uses a custom compiler for Java source code. If Vaadin depends on that aspect, it will not work with Clojure, which compiles directly to Java byte code.

link|improve this answer
feedback

Yes, we have written youcaneat.at entirely in Clojure and vaadin. The advantages of Clojure using Clojure are that it is a Lisp, and the advantages of using Vaadin are that you get to code everything using only serverside programming techniques, so you do not need to think about Javascript callbacks or anything like that.

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.