I'm creating a compojure project using hiccup-1.0.0-beta1. I get the following stack trace when I runlein ring server-headless:
Caused by: java.lang.IllegalAccessError: defelem does not existat clojure.core$refer.doInvoke(core.clj:3287)at clojure.lang.RestFn.applyTo(RestFn.java:139)at clojure.core$apply.invoke(core.clj:542)at clojure.core$load_lib.doInvoke(core.clj:4781)at clojure.lang.RestFn.applyTo(RestFn.java:142)at clojure.core$apply.invoke(core.clj:542)at clojure.core$load_libs.doInvoke(core.clj:4800)at clojure.lang.RestFn.applyTo(RestFn.java:137)at clojure.core$apply.invoke(core.clj:544)at clojure.core$use.doInvoke(core.clj:4892)at clojure.lang.RestFn.invoke(RestFn.java:408)at hiccup.page_helpers$eval17$loading__4414__auto____18.invoke(page_helpers.clj:1)at hiccup.page_helpers$eval17.invoke(page_helpers.clj:1)at clojure.lang.Compiler.eval(Compiler.java:5424)Which is confusing to me, because the filepage_helpers.clj no longer exists in hiccup:
$ jar tf lib/hiccup-1.0.0-beta1.jar META-INF/MANIFEST.MFMETA-INF/maven/hiccup/hiccup/pom.xmlMETA-INF/maven/hiccup/hiccup/pom.propertiesproject.cljhiccup/compiler.cljhiccup/core.cljhiccup/def.cljhiccup/element.cljhiccup/form.cljhiccup/middleware.cljhiccup/page.cljhiccup/util.clj$Also, my code doesn't even try to bring in page_helpers.clj:
(ns views.layout (:require [app-config :as config]) (:use hiccup.core) (:use hiccup.page) (:use hiccup.element))- reverted to 0.3.8 and (after fixing up the :use statements) the code works fine...Kevin– Kevin2012-03-05 21:29:12 +00:00CommentedMar 5, 2012 at 21:29
1 Answer1
I'm having the same trouble.
I think you are using dev-dependencylein-ring. If you look in to your project/lib/dev folder, you'll seehiccup 0.3.X jar there. It is because the filering-devel jar file uses old hiccup. I guess the cause to the problem is to do with the conflicts between these files. But I haven't figured out a way to get around this yet.
However, if you uselein ring uberwar to create a deployable file, that file works in another container (eg. tomcat) just fine.
3 Comments
Explore related questions
See similar questions with these tags.