2

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.

fglez
  • 8,422
  • 4
  • 47
  • 78

1 Answers1

2

Thanks to this page I've found that JRockit supports the more standard -verbose:class way of showing class loader traces.

fglez
  • 8,422
  • 4
  • 47
  • 78