Tagged Questions
The class-loading tag has no wiki summary.
35
votes
7answers
29k 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
...
18
votes
7answers
2k views
Java Class Loaders
Can anyone point me a good resource or explain me about the concept behind Class Loaders? I found the following resource on class loaders http://www.onjava.com/lpt/a/5586 but still no help. The ...
18
votes
5answers
29k views
How to load a jar file at runtime
I was asked to build a java system that will have the ability to load new code (expantions) while running.
How do I re-load a jar file while my code is running? or how do I load a new jar?
...
16
votes
4answers
9k 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 convert a ...
16
votes
6answers
6k views
Classloader issues - How to determine which library versions (jar-files) are loaded
I've just solved another I-though-I-was-using-this-version-of-a-library-but-apparently-my-app-server-has-already-loaded-an-older-version-of-this-library-issue (sigh).
Does anybody know a good way to ...
14
votes
18answers
870 views
What do people use class loading for?
So, every Java text book talks about how flexible Java is since it can load classes at run time. Just cobble together a string and give it to Class.forName(), and catch the ClassNotFoundException and ...
10
votes
3answers
169 views
What does “new” do in Java w.r.t. class loader?
I cannot easily find it in JLS/JVMSpec, nor in SO. I'm sure it must've been asked...
So, what does "new" do actually? Suppose we instantiate a class B in A:
class A {
// ...
new B();
// ...
10
votes
4answers
4k views
Efficient PHP auto-loading and naming strategies
Like most web developers these days, I'm thoroughly enjoying the benefits of solid MVC architecture for web apps and sites. When doing MVC with PHP, autoloading obviously comes in extremely handy.
...
9
votes
2answers
110 views
Why does a class containing a method call to a missing Interface within unused code cause a Java class loading error?
I'm seeing some class loading behavior that appears to be inconsistent with the JVM spec and am wondering if this is a bug. Or if not, hoping someone can explain why.
The example code found below ...
8
votes
5answers
178 views
Class.forName() vs ClassLoader.loadClass() - which to use for dynamic loading?
When dynamically loading a class, when is it appropriate to use
Class.forName("SomeClass");
and when should I use
ClassLoader.getSystemClassLoader().loadClass("SomeClass");
Or, are they two ...
6
votes
2answers
280 views
Implementing a filtering class loader
We are extending our java application to support plugins. Part of that includes keeping plugins isolated from our own classes, thus each plugin will live in it's own class loader.
We also plan on ...
6
votes
4answers
2k 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 load it to the JVM so ...
6
votes
4answers
1k views
In Java, is it possible to know whether a class has already been loaded?
Is it possible to know whether a Java class has been loaded, without attempting to load it? Class.forName attempts to load the class, but I don't want this side effect. Is there another way?
(I don't ...
5
votes
2answers
121 views
Capitalization and NoClassDefFoundError vs ClassNotFoundException
I'm seeing differences across platforms about when Class.forName() throws ClassNotFoundException and when it throws NoClassDefFoundError. Is this behavior well-defined somewhere, or have I stumbled ...
5
votes
1answer
270 views
ClassCircularityError thrown by ClassLoader.defineClass
I'm loading classes using a custom class loader. For the most part, everything works, but sometimes when I load particularly complex projects/libraries, I get a strange bug:
Exception in thread ...
5
votes
2answers
183 views
If a referenced Java class is not found, or blacklisted, when is this detected?
I wanted to use, inside Google appengine, a small library; one of the methods of one of its classes (say MyClass.writeToFile()) uses java.io.FileOutputStream, which is among the blacklisted classes ...
5
votes
3answers
1k views
Rails doesn't load classes on deserializing YAML/Marshal objects
Rails: 3.0.3
Ruby: 1.9.2
Trying to deserialize a very simple object using YAML.load or Marshal.load produces a corrupted object because the class which belongs to is not required on the ...
5
votes
3answers
235 views
Get bytes for a class that was generated at runtime
I am working with a Java framework that generates some (proxy) classes at runtime, using a custom ClassLoader. I would like to get for any such class that the custom ClassLoader returns from ...
5
votes
1answer
483 views
Loading partial entities with Linq to Entities
I am trying to load a partial entity with Linq to Entities:
Dim contacts = From c In My.Context.Contacts _
Select New Contact With { _
.ContactId = c.ContactId, _
.Name = ...
5
votes
6answers
1k views
How can I give java.util.Random a specific seed in thirdparty classes?
I have a Java program that loads thirdparty class files (classes I did not write) and executes them. These classes often use java.util.Random, which by default generates random starting seed values ...
4
votes
1answer
101 views
Sharing open source (Spring/Spring Security/Hibernate/etc) jars across web applications
We have a bunch of Java EE applications based on open source frameworks such as mentioned above. The WEB-INF/lib for each application has the following common jars:
antlr-2.7.6.jar*
...
4
votes
1answer
264 views
Should ClassLoader be thread-safe?
I'm writing my custom classloader, and am wondering if I should make it thread-safe?
As you can easily see, not all native Java classloaders are thread-safe, only sun.misc.Launcher.AppClassLoader does ...
4
votes
2answers
243 views
Forcing class load
Is there a way in C# or .net IL to force a class that has a type initializer (static constructor) to load itself, without accessing any of its parameters?
Assuming I've got the class
public static ...
4
votes
7answers
1k 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 of which implement ...
4
votes
2answers
3k views
Java classloader tutorial
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!
4
votes
4answers
812 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 class EnumTest {
...
4
votes
2answers
1k 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 invocation level. ...
4
votes
1answer
4k views
Applet class loader cannot find a class in the applet's jar
I started to ask this question and then figured out the answer before submitting it. I've decided to post the question anyway so that other people who run into the same problem will be able to learn ...
4
votes
4answers
1k views
In Java, can Class.forName ever return null?
In Java, can Class.forName ever return null, or will it always throw a ClassNotFoundException or NoClassDefFoundError if the class can't be located?
3
votes
6answers
361 views
Why doesn't the JVM load classes from a database?
Why doesn't the Java virtual machine load classes from a database (similar to the GAC of .NET)? As I understand it, currently it has to read and scan the manifests of each JAR on the class path in ...
3
votes
3answers
148 views
Is it possible to load JAR to your running Java application on the fly?
I have plugin system in my Java application. Is it possible to load JAR / Java classes on the fly to your application, or do I have to include these JAR / Java classes to my application?
My idea was ...
3
votes
3answers
248 views
Object instantiation when dependency is missing (Java)
Guys, can anyone explain the following scenario:
1) Web application has module1.jar in its lib directory. There is a class A in that module:
package module1;
import module2.B;
public interface IA { ...
3
votes
2answers
1k views
Websphere Classloading
We have an application deployed in Websphere application server 7. Its deployed and functioning in various environments. But it gave a method not found exception in one new env. On digging deeper we ...
3
votes
2answers
124 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 final' constants, some ...
3
votes
4answers
1k 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 bytes)?
To illustrate ...
3
votes
4answers
2k views
How to debug JVM resources loading?
this is my first question here in stackoverflow (and I hope not the last one :P).
To debug class loading in a JVM we can use the param -verbose:class, but... Anyone knows how to debug resources ...
3
votes
3answers
3k views
How do I use JDK6 ToolProvider and JavaCompiler with the context classloader?
My usage case is compiling generated source files from a java program using the ToolProvider and JavaCompiler classes provided in JDK 6. The source files contain references to classes in the context ...
2
votes
1answer
89 views
jboss-as 7 class loading within a war with ApplicationScoped eager ManagedBean
I have this kind of structure in my Maven project:
WEB-INF/lib
- a.jar
- Registry.class (@ApplicationScoped, @ManagedBean(eager=true)
- b.jar
- Module.class (@ApplicationScoped, ...
2
votes
2answers
89 views
Class.forName returning null
I've seen a post regarding whether or not Class.forName can return null here and everyone seems to think it can't (or wont). However, it is returning null for me with this code:
public void init() ...
2
votes
1answer
59 views
Explanation of class loading in an EAR for non-requested but dependent class
I'm trying to track down a problem I'm having in WAS 6.1 with AXIS 1 and Commons Logging. My EAR is set to parent last. In the ear is commons-logging, Axis and a client jar that uses Axis. The classes ...
2
votes
1answer
70 views
Loading Components/Classes into an ArrayList via some component Name Pattern
I have a number of classes of the same type (com.project.abc.abs.Agent) annotated like so;
@Component("WEB.Agent-1"), @Component("WEB.Agent-2"), @Component("WEB.Agent-3")... etc. For now assume that ...
2
votes
1answer
74 views
Classloading in EAR/WAR
Genally, an archive should be able to deployable on any application server as long as it conforms to the packaging standard and not using any app server specific artifacts. But many a times, there is ...
2
votes
3answers
73 views
Would it be possible having Spring libraries in common/shared context?
We have a portal application with one Main web app context and many minor web app contexts - plugins. Currently (very simplified) the Main one has own spring libraries and plugins would have to have ...
2
votes
2answers
141 views
How do I correctly load resources from a network directory in the java classpath?
Our java application relies on some resources which are available on a network share. This network share is located on the classpath, and the resources are read at runtime using ...
2
votes
1answer
106 views
java.lang.NoSuchMethodError, with both classes in the same JAR!
My Java skills are a little rusty, but this is really weird: I am getting a java.lang.NoSuchMethodError at runtime when calling a method in a different class - note that the code compiled fine - and ...
2
votes
3answers
318 views
How do I make Weblogic 10 prefer the jars in myApp.war:/WEB-INF/lib/ without throwing VerifyErrors?
The Weblogic classloader seems to prefer system libraries over the libraries in my war's WEB-INF/lib/.
I've tried setting the following in WEB-INF/weblogic.xml, without success:
...
2
votes
0answers
306 views
JBoss [ClassLoaderManager] IncompatibleClassChangeError?
Experiencing the following stacktrace in JBoss-6.0.0.Final after having potentially "resolved" some other lib conflicts by way of jboss-classloading.xml. What's the conflict now? JBoss is impossibly ...
2
votes
6answers
418 views
Loading two classes in different JARs
I got two classes with the same package in different JARs. Until the previous version, both classes were identical, so i had no issues in loading them. Now, one of them has a new method added and if I ...
2
votes
1answer
536 views
Differences between NoClassDefFoundError and ClassNotFoundException?
NoClassDefFoundError extends LinkageError which in turns extends Error.
Javadoc for Error class states:
An Error is a subclass of Throwable
that indicates serious problems that a reasonable ...
2
votes
2answers
988 views
BIRT 2.5 deployed with Xerces jar in WEB-INF/lib throws NullPointerException
so I am having pretty much exactly the same problem as what someone else has described here:
birt-exchange.
I have integrated BIRT with my existing web application that requires the xerces jar (mine ...