@cjhowe Yes, that’s super bad. That basically gives anyone full access to every file on your classpath.
i see... thanks!
Hello fellow clojurians. Yet another question about ServletContext
and :init
I am trying to figure out how to get servlet-context-path
during :init
stage. I am aware that servlet-context-path
is available in the request map but I need to have it on earlier stage.
What I am trying to achieve is to dynamically initialize Logback and create log file with a name that reflects application context name i.e. service#v1##201708111212.log
:thinking_face: