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?
|
|
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 is no longer a complete framework for developing web applications. Since the 0.4 release, compojure has been broken off into several projects.
One other part of Ring is the concept of middle-ware. This is code that sits between the handler and the incoming request and/or the outgoing response. Some built in middle-ware include sessions and stacktrace. The session middle-ware will add a :session key to the request map that contains all of the session info for the user making the request. If the :session key is present in the response map, it will be stored for the next request made by the current user. While the stack trace middle-ware will capture any exceptions that occur while processing the request and generate a stack trace that is sent back as the response if any exceptions do occur. Working directly with Ring can be tedious, so Compojure is built on top of Ring abstracting away the details. The application can now be expressed in terms of routing so you can have something like this:
Compojure is still working with the request/response maps so you can always access them if needed:
In this case the {uri :uri} part accesses the :uri key in the request map and sets uri to that value. The last component is Hiccup which makes generating the html easier. The various html tags are represented as vectors with the first element representing the tag name and the rest being the body of the tag.
Here is a link to a rough draft of some documentation currently being written by the author of compojure that you might find helpful: Compojure Doc |
||||
|
|
|
There's also "Noir" (http://www.webnoir.org/), which is a new Clojure web framework (so new the docs aren't there yet). Coming from Django/Rails, I dig the simple, straightforward syntax and it's pretty lean. |
|||||
|
|
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. |
|||||
|
|
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. |
|||
|
|
|
You can also have look at these frameworks (taken from disclojure/projects): There is also one more related question on Stack Overflow: Mature Clojure web frameworks? |
|||||
|
|