-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Anonymous classes defined with inline-java cannot refer to sparkle.jar #108
Comments
mboes
added a commit
to tweag/inline-java
that referenced
this issue
May 21, 2017
These do not always correspond. The system class loader is immutable, whereas the calling context might want to set their own class loader. This is the case e.g. of Spark. Fixes tweag/sparkle#108.
mboes
added a commit
to tweag/inline-java
that referenced
this issue
Jun 21, 2017
These do not always correspond. The system class loader is immutable, whereas the calling context might want to set their own class loader. This is the case e.g. of Spark. Fixes tweag/sparkle#108.
mboes
added a commit
to tweag/inline-java
that referenced
this issue
Jun 21, 2017
These do not always correspond. The system class loader is immutable, whereas the calling context might want to set their own class loader. This is the case e.g. of Spark. Fixes tweag/sparkle#108.
mboes
added a commit
to tweag/inline-java
that referenced
this issue
Jun 21, 2017
These do not always correspond. The system class loader is immutable, whereas the calling context might want to set their own class loader. This is the case e.g. of Spark. Fixes tweag/sparkle#108.
mboes
added a commit
to tweag/inline-java
that referenced
this issue
Jun 21, 2017
These do not always correspond. The system class loader is immutable, whereas the calling context might want to set their own class loader. This is the case e.g. of Spark. Fixes tweag/sparkle#108.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The fix to #104 is not quite usable for sparkle users yet. When the classes that
loadJavaWrappers
loads depend on classes in the sparkle application jar, the class loader can't find them whenloadJavaWrappers
is invoked inInlineJavaRegistrator.java
.The former approach proposed there (tweag/inline-java#62) does not suffer of this problem.
The text was updated successfully, but these errors were encountered: