Re: How to add a java servlet into a clojure ring project

2017-10-11 Thread Matching Socks
war files are zip files, so you can unzip the war and see what's wrong with it. If necessary, build the combined war file another way. You might be able to do that by producing a war file with your web app only (which you know works) and then taking it apart with unzip, incorporating the

How to add a java servlet into a clojure ring project

2017-10-11 Thread 'Alexandra Strekalova' via Clojure
I am integrating Togglz library into a Clojure Ring project to support feature toggles and would like to activate the Togglz admin console. According to the Togglz documentation it is necessary to add a servlet in the /WEB-INF/web.xml file for projects that don't support Servlet 3.0. I used