I suppose this is a strange question to the huge majority of programmers that work daily with Java. I don't. I know Java-the-language, because I worked on Java projects, but not Java-the-world. I never made a web app from scratch in Java. If I have to do it with Python, Ruby, I know where to go (Django or Rails), but if I want to make a web application in Clojure, not because I'm forced to live in a Java world, but because I like the language and I want to give it a try, what libraries and frameworks should I use?
|
7
|
|||||||
|
|
|
By far the best Clojure web framework I have yet encountered is Compojure: http://github.com/weavejester/compojure/tree/master It's small but powerful, and has beautifully elegant syntax. (It uses Jetty under the hood, but it hides the Servlet API from you unless you want it, which won't be often). Go look at the README at that URL, then download a snapshot and start playing. |
||
|
|
|
|
Compojure's what I used to build a tiny blogging application. It's modeled on Sinatra, which is a minimal, light-weight web framework for Ruby. I mostly just used the routing, which is just like Sinatra's. It looks like:
There's no ORM or templating library, but it does have functions that turn vectors into HTML. |
||
|
|
|
|
Webjure, a web programming framework for Clojure. Features: Dispatch servlet calls Clojure functions. Dynamic HTML generation. SQL query interface (through JDBC). This answer is meant as a placeholder for Webjure information. |
|||
|
|
|
|
Frameworks are overrated. Make a servlet and a JSP page and learn the real way! Also, use notepad for maximum manliness. I suggest not shaving for a few weeks before-hand. |
||
|
|
Since Clojure programs can invoke Java, it should be relatively easy to build a web framework. Just googling for "clojure web framework" seems to return several Opensource efforts to build a web framework for Clojure. Maybe you could give one of those a try? |
||
|
|
