-XX:+TraceClassLoading 相当于 JRockit
我们遇到了类加载问题,我们想要跟踪 JVM 类加载器。在 Sun JVM 上,我们通常使用 -XX:+TraceClassLoading 标志来阐明问题,但这次我们使用 JRockit。
你们中有人知道是否有办法从 JRockit JVM 获取相同的类加载信息吗?
谢谢。
We are having classloading issues and we want to trace the JVM classloader. On Sun JVM we generally use the -XX:+TraceClassLoading flags to throw some light at the problem, but this time we are using JRockit.
Do any of you know if there is a way to get the same class loading information from the JRockit JVM?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
感谢 此页面 我发现 JRockit 支持更多显示类加载器跟踪的标准
-verbose:class
方式。Thanks to this page I've found that JRockit supports the more standard
-verbose:class
way of showing class loader traces.