Reputation: 830
In the WebSphere Application Server 6.0 admin console, I am going to Troubleshooting -> Class Loader Viewer -> server_name -> Applications and opening the class loader for a war
file. I click the "Classes" link under "WAS Module - Compound Class Loader" and I see a list of classes loaded from corresponding jar
files.
Will this list update as the application runs, more code branches are executed, and potentially more libraries are loaded or does it only show what was loaded at startup?
Upvotes: 1
Views: 4613
Reputation: 33946
It shows the list of classes that have been loaded by that class loader at the time the page is loaded. If you refresh the page, it will show any new classes loaded in the interim (including as more code branches are executed, as you say).
Upvotes: 3