OpenJdk15下idea启动错误处理:OpenJDK 64-Bit Server VM warning: Options -Xverify:none and -noverify were deprecated in JDK 13 and will likely be removed in a future release
参看:https://stackoverflow.com/questions/61211695/openjdk-64-bit-server-vm-warning-options-xverifynone-and-noverify-were-depre
It's just a warning because JVM's verifies are much faster then before. If you are really not willing to see that, you could just remove -Xverify:none
and -noverify
from your JVM options.
In IDEA you can do that like this: In "edit configuration", select your application, and uncheck "Enable launch optimization" in the right panel. Then start your application, the warning will be disappeared but launch optimization is disabled.
在edit configuration中将上图红色checkbox取消即可