Tagged Questions
Compojure is an open source web framework for the Clojure programming language.
43
votes
3answers
4k views
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 Compojure's defroutes syntax, though, and I think I need to understand both the "how" and ...
34
votes
6answers
2k views
Running Clojure web applications in production
I'm deeply in love with Clojure, and Compojure seems like a neat web framework.
But it all fell apart when I wanted to deploy my application on a regular application server like Tomcat as a WAR. I ...
15
votes
6answers
4k views
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 like the best choice right now, so that's what I'm going to try out.
I'd like to ...
13
votes
2answers
749 views
how does one _model_ data from relational databases in clojure?
I have asked this question on twitter as well the #clojure IRC channel, yet got no responses.
There have been several articles about Clojure-for-Ruby-programmers, Clojure-for-lisp-programmers.. but ...
12
votes
3answers
1k views
Using Clojure with Vaadin
Has anyone tried implementing a web 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 ...
10
votes
7answers
1k views
How to find a web hosting service for running Compojure
I am very interested in building a website using Clojure and Compojure, like so:
http://briancarper.net/blog/deploying-clojure-websites
However, due to my limited experience with the Java ...
10
votes
8answers
2k views
webjure vs compojure?
I've heard of two Clojure based web application frameworks: Webjure and Compojure. Can someone let me know which is better?
8
votes
3answers
504 views
How to write multilingual applications in Clojure?
I'm trying to figure out how to create a Compojure-based web-site with multilingual support. Is there any solutions like i18n or something like that?
8
votes
3answers
1k views
Escape/sanitize user input in Clojure/Compojure
I am using Clojure/Ring/Compojure-0.4/Enlive stack to build a web application.
Are there functions in this stack that would either strip HTML or HTML-encode (i.e. <a> to <a>) ...
8
votes
1answer
2k views
Compojure Templating Pages
I have a bunch of static html files that share same header and footer. I
would like to share this header and footer across all pages. For now i
use the following routed but it is a bit ugly, and i ...
6
votes
3answers
427 views
Clojure web framework for designers/ front end devs
All of the popular Clojure web frameworks I am seeing use hiccup to generate HTML. I find hiccup is hard to have a front end design person adjust to, compared to other frameworks that parse the syntax ...
6
votes
1answer
806 views
How do you use sessions with Compojure/Ring?
I'm developing a web application using Compojure and I would hugely appreciate a small and complete example of storing and retrieving session data.
Many thanks in advance,
James.
6
votes
2answers
434 views
What is your way to do GAE Apps using Clojure?
I want to develop apps on GAE using Clojure with Compojure, using either Eclipse or Idea, emacs is not a bad idea :P
So which are the best ways to do this? I don't think that I want to use leiningen ...
5
votes
1answer
198 views
“Help Arthur find his restricted class” or “how can i make google app engine happy”
somewhere in here I'm using java.rmi.server.UID which is upsetting GAE.
After :only'ing my dependencies to the bone I'm at an impasse.
(ns helloworld.core
(:use ;[hiccup.core]
...
5
votes
4answers
595 views
Good current documentation and/or tutorials for compojure/ring development?
As far as I can tell 90% of information that can be found through a google search on compojure/ring is outdated for 0.4.0.
Can anyone point me toward some good current documentation?
Thanks!
5
votes
2answers
867 views
Could not locate compojure in classpath
I am trying the various Getting started examples and I can get a basic hello world example working with basic HTML in the route as such
(ns hello-world
(:use compojure.core ring.adapter.jetty)
...
5
votes
2answers
748 views
How Can I Output an HTML Comment in Compojure/Hiccup?
I'd like my program to output the following HTML:
<!--[if lt IE 8]><link rel="stylesheet" href="../blueprint/ie.css" type="text/css" media="screen, projection"><![endif]-->
Is ...
5
votes
2answers
358 views
Create a HTML table from nested maps (and vectors)
I'm trying to create a table (a work schedule) I have coded previously using python, I think it would be a nice introduction to the Clojure language for me.
I have very little experience in Clojure ...
5
votes
1answer
2k views
Getting started with CSS in Compojure?
I found a very basic web page on the Internet and now I would like to do the obvious thing and add some CSS so I can build nicer pages.
How can I include jQuery, as well as other style sheets?
How ...
4
votes
1answer
79 views
All-in-one solution for using OAuth2 with Compojure
I am trying to integrate a compojure application with those OAuth2 providers: LinkedIn, Facebook, Google, and Twitter, using an all in one solution. I am aware of some existing java libraries such as ...
4
votes
2answers
138 views
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 this by default, but Compojure doesn't. How can I make Compojure serve index.html when ...
4
votes
2answers
165 views
is it possible to call java servlet from ring/compojure?
I have to call a servlet written in Java from Clojure web application, and I don't understand how to do that.
Developing a webapp in Java, I had to describe all mappings in web.xml. In Compojure, I ...
4
votes
2answers
214 views
Creating Compojure routes from a list
I've just been playing with Compojure recently, and I've got a small basic webapp. For my HTML templates I'm using Enlive, and I've got a namespace that holds all the simple, static pages. The ...
4
votes
2answers
294 views
Clojure + Compojure + Maven application doesn't work in Tomcat
I'm working on a simple web application written in Clojure, using the Compojure web application framework and Maven.
This is a simplified version of my servlet:
(ns core
(:use compojure.core ...
4
votes
1answer
769 views
Jar produced with lein uberjar fails on NoClassDefFoundError
I have a simple web app with this project.clj:
(defproject squirrel-money "1.0.0-SNAPSHOT"
:description "Squirrel Money"
:dependencies [[org.clojure/clojure "1.2.0"]
...
4
votes
2answers
515 views
Destructuring forms and Compojure?
I'd thought I'd post this as I got it to work through guesswork without a real understanding of what's going on and I thought it might be helpful if someone explained it.
I understand how to get at ...
4
votes
1answer
429 views
Compojure + clojure.contrib.sql: SELECT query is being cached. Why?
I'm writing a Compojure TODO app and with MySQL as the primary data store. I'm using clojure.contrib.sql to interface with MySQL as follows:
(def db {:classname "com.mysql.jdbc.Driver"
...
4
votes
1answer
585 views
Using a javax.servlet.Filter with Compojure
I'm trying to build a simple web site using Clojure / Compojure and want to feed apply a servlet filter to the request / response (i.e. a standard javax.servlet.Filter instance).
e.g. if the current ...
4
votes
1answer
531 views
can rest framework like jersey be used in clojure instead of compojure
iam newbie to clojure, just curious as to can i use jersey REST api as REST webframework for clojure? all along i see people talking about compojure? if you can provide me any resource
or reasoning ...
4
votes
3answers
1k views
Compojure HTML Formatting
I'm relatively new to Clojure and a complete HTML/Compojure virgin. I'm trying to use Compojure to create static pages of HTML using a function similar to this:
(defn fake-write-html
[dir args]
...
4
votes
1answer
370 views
How do I make Compojure listen to a single IP
I have started a Compojure (Jetty) server with:
(defonce *server* (run-server {:host "localhost" :port 8080} "/*" (servlet routes)))
but netstat still shows that it is listening on 0.0.0.0:8080, ...
3
votes
2answers
110 views
Is there a way to do a hot reload in compojure?
I'm new to clojure and compojure and I was wondering if there's a way to do a hot reload of code changes as you can with Ruby's Sinatra (with the shotgun gem) or Java's Play!
I'm following along with ...
3
votes
1answer
124 views
How to get HttpServletRequest in a Ring handler?
Is there a way to get the HttpServletRequest object in a Ring handler?
I am using Noir to develope a web app. I need to get the HttpServletRequest obj when handling a URI. So I use the ...
3
votes
1answer
188 views
Compojure: lein-ring in production?
It seems that people sugget the use of lein-ring for a no-brainer deploy of a Compojure application. Isn't it just meant for development? I've benchmarked the same app running with lein-ring vs packed ...
3
votes
1answer
111 views
Compojure Routes losing params info
My code:
(defn json-response [data & [status]]
{:status (or status 200)
:headers {"Content-Type" "application/json"}
:body (json/generate-string data)})
(defroutes ...
3
votes
2answers
189 views
How can I generate Modified http headers with Compojure?
I'm trying to improve performance for clients fetching pages from my Compojure webserver. We serve up a bunch of static files (JS, CSS) using (compojure.route/resources "/"), which looks for files on ...
3
votes
3answers
104 views
Where can I find compojure.html?
I justed started experimenting with compojure and I'd like to create HTML output with the syntax I've found in several compojure examples:
(html [:html
[:head
[:title "Page title"]]
...
3
votes
3answers
515 views
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)
(:require [compojure.route :as route]))
(defn ...
3
votes
1answer
196 views
Where's run-server gone in compojure?
I used to be able to start a web server in compojure like this:
(run-server {:port 8080} "/*" (servlet my-app))
Does anyone know where this function has gone in the latest compojure? (0.6.2)
The ...
3
votes
2answers
373 views
Serving binary files from the database with compojure
I have the following routes definition:
(require '[compojure.core :as ccore]
'[ring.util.response :as response])
(def *main-routes*
(ccore/defroutes avalanche-routes
(ccore/GET ...
3
votes
2answers
726 views
Compojure binds HTTP request params from URL, but not from a POST form
Compojure does not bind the fields in a POST form. This is my route def:
(defroutes main-routes
(POST "/query" {params :params}
(debug (str "|" params "|"))
"OK...")
)
When I post a form ...
3
votes
1answer
722 views
Wrong number of args passed to: repl$repl
I have a trouble with a compojure "Getting started" example that I do notunderstand. When I run the example from http://weavejester.github.com/compojure/docs/getting-started.html
...I get the ...
3
votes
2answers
1k views
WAR created using Clojure deployed on Apache Tomcat does not run Servlet
I created the sample WAR as given at the Compojure Getting Started Page and deployed it to Apache Tomcat 6.0.2 wepapps folder. The Web.xml I used is as below:
<web-app>
<servlet>
...
3
votes
3answers
1k views
Deploying Compojure/Sinatra Applications
What is the preferred way of deploying a compojure/sinatra applications? I have multiple sites running on the host so i can't run jetty/mongrel on port 80. How should i handle multiple ...
2
votes
1answer
85 views
Serving static file from Compojure
I'm trying to have a self-executable app that will runs jetty and a Compojure webapp. The user who will deploy the app should be able to modify manually the css files and some configurations files, so ...
2
votes
3answers
95 views
Clojure warning: “resultset-seq already exists in clojure.core”
I'm new to Clojure and building a web app using the Noir framework (very similar to Compojure, in fact I think it's Compojure with a different request handler layer). I'm getting a warning when I ...
2
votes
1answer
114 views
Compojure: access filesystem
this is my project.clj file:
(defproject org.github.pistacchio.deviantchecker "0.9.0"
:description "A one page application for keeping track of changes on deviantart.com gallieries"
:dependencies ...
2
votes
1answer
145 views
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 http://mysite.org/add?u=http://sitetoadd.com
(GET "/add?:url" [url] url)
(GET ...
2
votes
1answer
144 views
clojure/compojure/hiccup NullPointerException
The stack trace I have does not contain any reference to my code. I'm not sure how to begin finding out what might be wrong here:
LazySeq.java:47 clojure.lang.LazySeq.sval
LazySeq.java:56 ...
2
votes
2answers
410 views
Simple example of Sandbar or Ring sessions in Google App Engine
I'm trying to work out how to get sessions and flash working in Google App Engine. Could someone provide a clear example using either Ring or Sandbar? I think I have sandbar working, specifically it ...