This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-01-16
Channels
- # announcements (2)
- # babashka (51)
- # beginners (165)
- # biff (39)
- # clara (1)
- # clj-kondo (20)
- # cljsrn (6)
- # clojure (64)
- # clojure-belgium (11)
- # clojure-conj (2)
- # clojure-europe (12)
- # clojure-nl (3)
- # clojure-norway (7)
- # clojure-uk (6)
- # clojurescript (11)
- # conf-proposals (1)
- # conjure (1)
- # core-async (19)
- # cursive (6)
- # data-science (16)
- # datomic (6)
- # deps-new (4)
- # fulcro (60)
- # funcool (3)
- # graalvm (9)
- # helix (14)
- # introduce-yourself (4)
- # jobs-discuss (13)
- # joyride (1)
- # kaocha (2)
- # malli (12)
- # off-topic (25)
- # polylith (9)
- # portal (3)
- # practicalli (1)
- # rdf (43)
- # re-frame (7)
- # reagent (5)
- # releases (5)
- # remote-jobs (8)
- # sci (5)
- # shadow-cljs (42)
- # squint (6)
- # xtdb (5)
I'm trying the first time to use jena (java) in a clojure graal project. My setup works fine for clojure only, but as soon as I use jena, I get a ClassNotFoundException. Minmal project https://github.com/virtual-earth-de/jena-graal Any ideas how what I'm doing wrong or tips where to look or what I could be doing better?
Guess I'm really too tired now … it's public now
I think it will help if you add that class to the reflection config. Perhaps the jena library loads that class dynamically
I'll try. It's my first time using graal for more than playing around 🙂
Thanks!
What could also help is add (set! *warn-on-reflection* true)
in your clojure code to avoid any reflection
That solved this error. Now I get a - different - error from xerces, but that has to wait till tomorrow. Thanks a lot!