We have a Clojure web app which uses jndi to create a connection to the database. The code to query the database looks something like this:
(def jndi-name {:name "jndi name"})
(defn query [q]
(sql/with-connection {:name "jndi name"}
(sql/with-query-results rs q
(time (vec rs)))))
The jndi configuration is loaded from a jetty.xml file when jetty is lauched. However it doesn't work in the REPL making development somewhat impractical.
Is there any way to structure the code so that when not running in a server, the db config is loaded from a config file rather than the jetty.xml when no jndi context is available?