-
Sub-task
-
Resolution: Delivered
-
P4
-
13
-
Verified
The Java options `-Xverify:none` and `-noverify` have been deprecated in this release. The options will continue to work as intended but will generate the following warning when used:
warning: Options -Xverify:none and -noverify were deprecated in JDK 13 and will likely be removed in a future release.
Deprecating these options helps prevent users from running code that violates the JVM Specification, which can leave their applications open to malicious code.
Users who need to run without startup verification can use AppCDS to archive their classes. The classes are verified during archiving and avoid verification at runtime.
warning: Options -Xverify:none and -noverify were deprecated in JDK 13 and will likely be removed in a future release.
Deprecating these options helps prevent users from running code that violates the JVM Specification, which can leave their applications open to malicious code.
Users who need to run without startup verification can use AppCDS to archive their classes. The classes are verified during archiving and avoid verification at runtime.