Top "Compojure" questions

Compojure is an open source web framework for the Clojure programming language.

What's the "big idea" behind compojure routes?

I'm new to Clojure and have been using Compojure to write a basic web application. I'm hitting a wall with …

clojure compojure
Serving static files with ring/compojure - from a war

Using ring (and the lein-ring tools) - I am able to serve up static files from "resources" etc as per …

clojure leiningen compojure ring
How To Integrate Clojure Web Applications in Apache

Note Given this OP was written about two years ago, rather than ask the same question again, I am wondering …

deployment clojure war compojure
Compojure development without web server restarts

I've written a small Swing App before in Clojure and now I'd like to create an Ajax-style Web-App. Compojure looks …

clojure compojure
Serve index.html at / by default in Compojure

I have a static file called index.html that I'd like to serve when someone requests /. Usually web servers do …

clojure compojure
Compojure: how to map query parameters

I'm trying to make any of the following mappings work to map http://mysite.org/add?http://sitetoadd.com or …

clojure compojure
Missing form parameters in Compojure POST request

I'm having problems getting the form parameters in the following Compojure example: (ns hello-world (:use compojure.core, ring.adapter.jetty) (:…

clojure compojure
Compojure routes with different middleware

I'm currently writing an API in Clojure using Compojure (and Ring and associated middleware). I'm trying to apply different authentication …

clojure routes middleware compojure ring
ring-json's wrap-json-response middleware and compojure returns text/plain?

I'm trying to use ring-json's wrap-json-response middleware within my compojure app. I have a simple GET handler that returns a …

clojure compojure ring
Accessing POST json in clojure

EDIT - The source code is on github if you're interested. Thanks I am a bit confused as to how …

json post clojure compojure