I was wondering difference between compile time and run time dependencies in Java. It is related to class path, but how do they differ? I googled but didn't find a satisfying answer.
Thanks Kunal
|
I was wondering difference between compile time and run time dependencies in Java. It is related to class path, but how do they differ? I googled but didn't find a satisfying answer. Thanks Kunal |
|||
|
|
|
An easy example is to look at an api like the servlet api. To make your servlets compile, you only need the servlet-api.jar, but runtime you need a servlet container actually implementing the api. |
|||
|
|
Although compile-time dependency usually implies run-time dependency, you can have a compile-time only dependency. This is based on the fact that Java only links class dependencies on first access to that class, so if you never access a particular class at run-time because a code path is never traversed, Java will ignore both the class and its dependencies. Example of this In C.java (generates C.class):
In A.java (generates A.class):
In this case, |
||||
|
|
|
Compiletime dependencies are only the dependencies (other classes) which you use directly in the class you're compiling. Runtime dependencies covers both the direct and indirect dependencies of the class you're running. Thus, runtime dependencies includes dependencies of dependencies and any reflection dependencies like classnames which you have in a |
|||||||||||||
|
|
The compiler needs the right classpath in order to compile calls to a library (compile time dependencies) The JVM needs the right classpath in order to load the classes in the library you are calling (runtime dependencies). They may be different in a couple of ways: 1) if your class C1 calls library class L1, and L1 calls library class L2, then C1 has a runtime dependency on L1 and L2, but only a compile time dependency on L1. 2) if your class C1 dynamically instantiates an interface I1 using Class.forName() or some other mechanism, and the implementing class for interface I1 is class L1, then C1 has a runtime dependency on I1 and L1, but only a compile time dependency on I1. Other "indirect" dependencies which are the same for compile-time and run-time: 3) your class C1 extends library class L1, and L1 implements interface I1 and extends library class L2: C1 has a compile-time dependency on L1, L2, and I1. 4) your class C1 has a method Basically, to do anything interesting, your class needs to interface with other classes and interfaces in the classpath. The class/interface graph formed by that set of library interfaces yields the compile-time dependency chain. The library implementations yield the run-time dependency chain. Note that the run-time dependency chain is run-time dependent or fail-slow: if the implementation of L1 sometimes depends on instantiating an object of class L2, and that class only gets instantiated in one particular scenario, then there's no dependency except in that scenario. |
|||||||||
|
|
Java doesn't actually link anything at compile time. It only verifies the syntax using the matching classes it finds in the CLASSPATH. It's not until runtime that everything gets put together and executed based on the CLASSPATH at that time. |
|||
|
|