views:

750

answers:

2

Hi,

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 ?

+3  A: 

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.

Stuart Sierra
+4  A: 

Hi,

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

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

Tomek Lipski
Thanks for this. Will check it out !
Icarus