When exactly Java looks for dependencies of a Jar file at Run Time?
At the very beginning of running it?
When it tries to Initialize a Class which has some dependency?
Or any other time?
|
When exactly Java looks for dependencies of a Jar file at Run Time? At the very beginning of running it? |
||||
|
|
|
The Java Language Specification, ยง12.3 says (my emphasis):
Now, the specification says that a JVM can do a range of things, but clearly, any given JVM does do one particular thing. Marko's answer says that "all class files in the classpath may be loaded even before the I believe that what actually happens in the Sun JVM is that things are loaded as late as possible. Whenever a class is initialized, then any classes it refers to need to be loaded and verified, but they don't need to be initialized until they themselves are actually used. I appreciate that this is not a very detailed or authoritative answer. |
|||
|
|
|
Exactly when a .class file will be loaded is not specified. For all you know, all class files in the classpath may be loaded even before the The only thing that Java specifies is when a class will be initialized, which is an entirely different thing from loading it. |
|||
|
|
|
I am pretty sure it happens at compilation time. You won't get compiled version of your code without meeting all requirements and dependencies. In case of compiled jar, I've prepared two classes:
and:
First attempt of running an exported project:
Then, after removal Test2.class from my jar file and then running it again:
T1 test passed, then NoClassDefFoundError exception appeared. So, answering to your question: dependencies will be checked at run-time. |
|||||||
|