Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用一个脚本来运行一个在 RHEL 中使用大量 jar 的 Java 进程。
是否有一个简单的命令可以查看正在从哪些 jar 类中加载?
例如:
com.asdf.asdf.DummyClass==> /path/to/arf.jar
或者其他的东西?
是的
java -verbose:class x.y.Z
使用类的类加载器。在此处查看代码示例: http ://www.rgagnon.com/javadetails/java-0391.html