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 packaging as a WAR is not a solution for me.

My idea is to have a self-executable JAR in one directory and a webdata/static/css directory under it.

However when using the following route, the file in the css directory are not served:

(route/files "/static" {:root (str (System/getProperty "user.dir") "/webdata")})

What is the problem?

link|improve this question

50% accept rate
Does it work from REPL ? – Ankur Jan 17 at 4:02
No, it doesn't. – z1naOK9nu8iY5A Jan 17 at 9:32
feedback

1 Answer

up vote 1 down vote accepted

Ok I found the error, the path wasn't specified correctly. This code works:

(route/files "/" {:root (str (System/getProperty "user.dir") "/webdata/public")})

The tree structure of the project is then like this:

standalone-jar.jar
webdata
    |_public
      |_css
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.