Reputation: 383
I am working on a project and we are having issues related to a dependency, more than one projects are using the same class but in different versions (indirect dependencies). We now need to know the sequence in which class loader is loading the classes on the deployment server so that we can figure our which version of that dependency is correct.
Our project is deployed using wars on jboss.
Upvotes: 2
Views: 209
Reputation: 1198
You can use Tattletale to check loaded classes. Use Tattletale to find application dependencies
Upvotes: 0