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 …
1
vote
4answers
73 views
Java: How to load Class stored as byte[] into the JVM?
If one has serialized the entire .class file into byte[], and assuming the name of the class is known (passed along with the byte[]), how do you convert byte[] -> Class -> then loa …
2
votes
4answers
829 views
URL to load resources from the classpath in Java
In Java, you can load all kinds of resources using the same API but with different URL protocols:
file:///tmp.txt
http://127.0.0.1:8080/a.properties
jar:http://www.foo.com/bar/baz …
3
votes
2answers
39 views
In what order are the different parts of a class initialized when a class is loaded in the JVM?
Imagine a Java class which has most features that you can find in a class. For example: it inherits from another class, implements a couple of interfaces, includes some 'static fin …
1
vote
3answers
53 views
loading JRuby classes from Java by Class.forName
Hello,
I have following class in Java code:
public class CHRTreeCreator extends IndexCreator { ... }
Instead CHRTreeCreator I want to use diffrent implementation which also ext …
3
votes
6answers
142 views
Java: Dynamically Load Multiple Versions of Same Class
I've looked all around and I haven't been able to figure out how to accomplish this.
What I'd like to be able to do is to load set of classes, probably all in the same folder. All …
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 …
0
votes
0answers
17 views
JBoss: @Resource not injected when classloader isolation enabled
Hello,
JBoss 4.2.3, an application deployed as a ear. Works. Then I enable classloader isolation by adding a loader-repository tag into jboss-app.xml. In multiple beans @Resource …
1
vote
2answers
85 views
Java classloader tutorial
Hi all,
Does anyone know of a good (and thorough) tutorial about Java class loading, how to extend that mechanism and how to actually work with the extension?
Thanks!
0
votes
4answers
102 views
Dynamically loading name of Java class file in a Quartz job
I have a Quartz job written in Java which runs fine if I have the Quartz JobDetail line set as follows:
JobDetail jd = new JobDetail("FeedMinersJob", scheduler.DEFAULT_GROUP, Fee …
0
votes
2answers
74 views
[Android] Are static fields in Activity classes guaranteed to outlive a create/destroy cycle?
Hi,
I frequently run into the problem that I have to preserve state between several invocations of an activity (i.e. going through several onCreate()/onDelete() cycles). Unfortuna …
0
votes
1answer
40 views
Rails / delayed_job - want to load newest version of job class
I'm using the delayed_job plugin in Rails to do background processing, and I'm experiencing a hiccup in the 'agile development' I've been experiencing so far in Rails...
Usually i …
0
votes
1answer
164 views
Get size of jar file loaded by urlclassloader
Does anybody know a good way to find the file size that is dynamically loaded by urlclassloader?
I am using the urlclassloader in the following manner, but need to keep track of …
1
vote
3answers
117 views
Java Enums: Two enum types, each containing references to each other?
Is there a way to get around the class-loading issues caused by having two enums that reference each other?
I have two sets of enumerations, Foo and Bar, defined like so:
public …
1
vote
1answer
80 views
Who loads javax.swing.* classes in Equinox osgi container?
I read some equinox code and doc. I came to understand that, at present, only class loading for java.* packages are delegated to the parent classloader(given that i have not modifi …
