当前位置: 首页 > 知识库问答 >
问题:

Java 热点(TM) 64 位服务器虚拟机警告选项 - X验证:无和 -否验证已在 JDK 13 中弃用,可能会在将来的发行版中删除 [重复]

夹谷志
2023-03-14

在Eclipse中,我在运行项目时遇到了以下错误:

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.

错误屏幕截图

我在安装JDK 14后开始收到这个错误。

共有1个答案

邴兴为
2023-03-14

如注释中所述,您收到了一个警告和一个错误。

警告:

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

这可以通过禁用应用程序的“快速启动”复选框来解决。详见本回答。

错误:

Error: Could not find or load main class com.cgs.stestweb.SpringBootBasicsApplication
Caused by: java.lang.ClassNotFoundException: com.cgs.stestweb.SpringBootBasicsApplication

要解决此问题,您需要更正配置。

 类似资料: