Skip to content

Instantly share code, notes, and snippets.

@lancepantz
Created December 27, 2010 22:25
Show Gist options
  • Save lancepantz/756639 to your computer and use it in GitHub Desktop.
Save lancepantz/756639 to your computer and use it in GitHub Desktop.
(ns graph.servlet
(:gen-class :extends javax.servlet.http.HttpServlet :exposes-methods {init initSuper}))
(defn -init [self config]
(debug "init called")
(debug self)
(.initSuper self config))
java.lang.IllegalArgumentException: No matching method found: initSuper for class graph.servlet
at clojure.lang.Reflector.invokeMatchingMethod(Reflector.java:50)
at clojure.lang.Reflector.invokeInstanceMethod(Reflector.java:28)
at graph.servlet$_init.invoke(servlet.clj:83)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment