IDEA: Options -Xverify:none and -noverify were deprecated in JDK 13 and will likely be removed in a future release.

问题

使用IDEA 2020.1 EAP版本时,如果使用JDK 14.在运行Spring Boot项目的时候,会提示:

Java HotSpot(TM) 64-Bit Server VM warning: Options -Xverify:none and -noverify were deprecated in JDK 13 and will likely be removed in a future release.

原因是在运行中勾选了对应方案导致的.

java标志
image-3026

解决方案

IDEA->Run->Edit Configurations-> Enable launch optimization(取消勾选).

再次运行就没有这个提示了.