Java verbose class loading

I guess your best bet is to do the following:

  • Output some fixed text once your main method starts and right before it ends.
  • Pipe the verbose output into a file
  • Use things like less or grep to find the classes loaded between the two tags from the main method.

There’s a similar question and some answers here: Is there a way to get which classes a ClassLoader has loaded?

Did you try -verbose:class?

Leave a Comment