Use of -noverify when launching java apps
问题 I have seen many apps that take instrument classes and take -javaagent as a param when loading also put a -noverify to the command line. The Java doc says that -noverify turns off class verification. However why would anyone want to turn off verification even if they are instrumenting classes? 回答1: Start-up time, I'd say. Verification that classes are correct takes some time when the class is loaded. Since classes might be loaded in a lazy fashion (not on app start, but when being used for