JDeps: Simple Dependency Analysis
Learn about a nifty new utility that creates simple dependency graphs of Java CLASS files.
Join the DZone community and get the full member experience.
Join For FreeIn Java 8 we have a new command line tool called jdeps to know the Java dependencies. It is a nice tool to do static analysis and find out the .class/jar dependencies.
For example, I have a class and wanted to know the dependencies summary as DOT (graph description language) format I can get it by issuing the below jdeps command.
D:\>jdeps -dotoutput . -cp jsoup-1.7.2.jar D:\classes\org\smarttechies\harvester\ProductInfoHarvester.class
Here -dotoutput <dir> option generates the DOT file for given class/jar archive and a summary DOT file under the given directory.
From the above example, jdeps generates package level dependency. The DOT visualization is given below.
If we want the verbose class level dependency, we can generate by passing -v option to the jdpes.
D:\>jdeps -dotoutput . -v -cp jsoup-1.7.2.jar D:\bin\org\smarttechies\harvester\ProductInfoHarvester.class
From the above example, jdeps generates classlevel dependency. The DOT visualization is given below.
If you want to know more options get it from help jdeps -help
Opinions expressed by DZone contributors are their own.
Comments