7
votes
4answers
888 views
How to deal with LinkageErrors in Java?
Developing a heavily XML-based Java-application, I recently encountered an interesting problem on Ubuntu Linux.
My application, using the Java Plugin Framework, appears unable to …
0
votes
3answers
43 views
osgi-like framework without the import/export restrictions?
I like OSGi, but the import/export restrictions and the lack of context class loader creates havoc when trying to use 3rd party libraries (e.g., some libraries try to find file.xml …
1
vote
2answers
42 views
How to use implementation loaded with different Java classloader?
I am writing a library where I allow people to provide implementations of certain interfaces using a plugin framework (it's JPF if you're familiar). The plugins are not stored in …
1
vote
1answer
152 views
Eclipse RCP: Using different JUnit version (4.3.1) than shipped with eclipse galileo (4.5.0)
Hallo,
I have the following situation:
We are developing an Eclipse RCP Application and want to switch from Eclipse 3.4 to Eclipse 3.5. Our JUnit-Tests are using JUnit 4.3.1 and …
1
vote
5answers
77 views
Substitute (override) class implementation at Runtime (Java)
Is there any way of substituting (overriding) a Java class implementation, which is already loaded by the System class loader by another implementation (available as an array of by …
2
votes
2answers
76 views
Any tool to view the picture of class loader tree?
Say I'm debugging some weird class loading issues of an application deployed inside of a Java EE app server. By some reason it appears, that I have duplicate jars on the class path …
3
votes
1answer
90 views
java classloader and runtime compilation
Hi all,
Despite warnings to drop my present course of action, I currently see no better way to solve my problem. I must generate Java code at runtime, then compile it, load it and …
0
votes
3answers
89 views
java: is there a framework that allows dynamically loading and unloading of jars (but not osgi)?
I want a mechanism that will allow to dynamically load and unload jars as well as calling an activator class in the jar. I don't want to use OSGi because of the cumbersome import/e …
0
votes
1answer
33 views
Who needs to see who in a JPA application?
I have code using JPA and everything works fine in my development environment and in unit tests. But deploying my modules into the OSGi target environment, I regularly run into the …
2
votes
3answers
68 views
ClassLoader loading wrong file
I use this code snippet to obtain a file as an input stream. The file version.txt is packaged in my app's jar, in the upper-most folder.
InputStream resource = getClass().getClass …
0
votes
2answers
239 views
Reading files inside a JAR file
Hi,
I am trying to read database scripts in a Jar file so that I can split up my import.sql files as many times as I see fit.
For instance, I have several projects or modules tha …
0
votes
3answers
84 views
How to determine what classes have been loaded from where in JBoss
I seem to remember some function in the JMX console which allows you to type in a class name, and see the classloaders which loaded it, and from which resources the class was loade …
7
votes
8answers
1k views
Scanning Java annotations at runtime
What is the best way of searching the whole classpath for an annotated class?
I'm doing a library and I want to allow the users to annotate their classes, so when the Web applicat …
1
vote
2answers
146 views
In an OSGi environment, how are the classpaths and classloaders set up?
I'm confused about class visibility in OSGi. I'm running Apache Felix and loading the following bundles:
the antlr, asm, jpa and core bundles from eclipselink
an OSGi-fied jar fo …
3
votes
2answers
126 views
How does one access a method from an external jar at runtime?
This is a continuation of the question posted in: http://stackoverflow.com/questions/194698/how-to-load-a-jar-file-at-runtime
I am uncertain as to how to continue to the method in …
