Question

I am using a script to run a Java process that uses a TON of jars in RHEL.

Is there an easy command to see which jars classes are being loaded from?

For instance:

com.asdf.asdf.DummyClass==> /path/to/arf.jar

or something?

Was it helpful?

Solution

Yeap

java -verbose:class  x.y.Z

OTHER TIPS

Use the class' classLoader. See code samples here: http://www.rgagnon.com/javadetails/java-0391.html

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top