简体   繁体   English

DCEVM Java补丁无法正常工作

[英]DCEVM java patch is not working

I am trying to replace standard JVM of jdk1.8.0_112 with Dynamic Code Evolution VM using 我正在尝试使用Dynamic Code Evolution VM替换jdk1.8.0_112的标准JVM

DCEVM-light-8u112-installer.jar DCEVM-light-8u112-installer.jar

but when i checked jvm version after patching with command 但是当我用命令修补后检查JVM版本时

c:>java -version c:> java -version

it is still showing same Server VM as below 它仍然显示如下相同的服务器虚拟机

1 java version "1.8.0_112" 1个Java版本“ 1.8.0_112”

2 Java(TM) SE Runtime Environment (build 1.8.0_112-b15) 2 Java™SE运行时环境(内部版本1.8.0_112-b15)

3 Java HotSpot(TM) 64-Bit Server VM (build 25.112-b15, mixed mode) 3个Java HotSpot(TM)64位服务器VM(内部版本25.112-b15,混合模式)

at line number 3, i am expecting type of Server VM as 在第3行,我期望服务器VM的类型为

Dynamic Code Evolution 64-Bit Server VM (build 25.71-b01-dcevmlight-10, mixed mode) 动态代码演进64位服务器VM(内部版本25.71-b01-dcevmlight-10,混合模式)

please guide me on this 请为此指导我

The light version of the DCEVM project provides a single jvm.dll file that is a replacement for the default jvm.dll file included with Oracle/OpenJDK JDKs. 轻量级DCEVM项目提供了一个jvm.dll文件,该文件替代了Oracle / OpenJDK JDK附带的默认jvm.dll文件。 The light version does not overwrite the file included with the JDK/JRE installation but rather installs the DCEVM JVM as an alternate implementation. 精简版不会覆盖JDK / JRE安装随附的文件,而是安装DCEVM JVM作为替代实现。 Therefore, java -version will continue to show the default Java version details. 因此, java -version将继续显示默认的Java版本详细信息。

If DCEVM was installed successfully, java -version -XXaltjvm=dcevm will show the DCEVM version details, as expected. 如果成功安装了DCEVM,则java -version -XXaltjvm=dcevm将按预期显示DCEVM版本的详细信息。

java -version will return the DCEVM JVM version details if the full version of DCEVM is installed. 如果已安装DCEVM的完整版本,则java -version将返回DCEVM JVM版本详细信息。 Currently the DCEVM project provides full binaries only for Java 7. However, there is very little functional difference between the light and full versions so there is no real need to install the full version. 当前,DCEVM项目仅为Java 7提供完整的二进制文件。但是,简易版本和完整版本之间的功能差异很小,因此,没有真正的需要安装完整版本。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM