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?
404
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
if you get warnings while loading your namespace, fix them
That solved this error. Now I get a - different - error from xerces, but that has to wait till tomorrow. Thanks a lot!