[Solved] In Java, verify all methods in a class path that are called actually exist within that classpath [closed]
There are no tools that I am aware of that do this, and a JVM will not just blindly load all classes contained on its class path on boot. It just loads whatever you told it is the main class, and whenever it loads a class, it checks which other classes it needs to load … Read more