Tagged Questions
45
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 ...
38
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 ...
14
votes
2answers
760 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
2k 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
3k 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
526 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
495 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
848 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
442 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
216 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
612 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
922 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
803 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
374 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 ...
5
votes
1answer
376 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, ...
4
votes
1answer
108 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
160 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
173 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
217 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
331 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
814 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
526 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
440 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
599 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
546 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]
...
3
votes
1answer
123 views
Compojure or Noir for a UI-less webservice?
If one is planning to create a UI-less web service (receives JSON and/or XML, returns JSON and/or XML), does Noir provide anything useful over and above Compojure?
3
votes
2answers
124 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
151 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
217 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
119 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
203 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
106 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
568 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
204 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
385 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
1answer
566 views
Compojure Routes Issues
I have a small compojure site, with the routes defined as such:
(defroutes example
(GET "/" [] {:status 200
:headers {"Content-Type" "text/html"}
:body (home)})
(GET ...
3
votes
2answers
763 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
737 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
0answers
99 views
Clojure Webapp in Intellij + Maven + Tomcat
I am working with a Compojure based Clojure web application in IntelliJ using Maven as my dependency manager. It is based on an application I found at this git repository referenced by this example. ...
2
votes
1answer
105 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
115 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
129 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 ...