Using Clojure with Vaadin
Has anyone tried implementing a we开发者_运维技巧b 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 ?
I've created an article in Vaadin Trac wiki describing such integration:
http://dev.vaadin.com/wiki/Articles/ClojureScripting
Yes, created youcaneatat.com 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.
However, Vaadin is very client heavy, so I would only recommend this for intranet applications
精彩评论