vote up 12 vote down star
7

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?

flag

73% accept rate
I was wondering whether you wish to use Java Native API or Clojure Native ones ? – _ande_turner_ Oct 5 '08 at 7:33
Ande: I'm really not sure, as I know so little about the Java world in this respect (but I've been using Java, the language, for some time at work already). – J. Pablo Fernández Oct 20 '08 at 5:44
I think it would be nice if this question ended up with a list of Clojure web frameworks, one answer each, and anyone could vote their favorite. I think Meredydd's is definitely the Compojure's answer. I'll add one for Webjure and it'd be nice to have a comparison. – J. Pablo Fernández Oct 20 '08 at 5:47

5 Answers

vote up 12 vote down check

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.

link|flag
vote up 0 vote down

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:

(GET "/post/:id/:slug"
  (some-function-that-returns-html :id :slug))

There's no ORM or templating library, but it does have functions that turn vectors into HTML.

link|flag
vote up 5 vote down

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.

link|flag
vote up 1 vote down

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.

link|flag
Awww, come on! It was just a joke! – MattC Oct 9 '08 at 21:33
2  
> I suggest not shaving for a few weeks before-hand And thus the "The scary beard framework" is born. – swapnonil Oct 20 '08 at 11:27
vote up -1 vote down

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?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.