美文网首页
Eclipes遇到的问题及解决办法

Eclipes遇到的问题及解决办法

作者: WULG | 来源:发表于2018-02-28 12:55 被阅读18次

    eclipse指定jdk版本启动,解决Version XXXX of the JVM is not suitable

    例如:Verson1.7.0_79 of the JVM is not suitable for this product Version:1.8 or greater is required

    解决方式: 

    配置eclipse文件夹下的eclipse.ini文件。 

    添加vm字段: 

    完整代码

    -vm

    D:/jdk1.8.0_40/bin

    -startup

    plugins/org.eclipse.equinox.launcher_1.3.201.v20161025-1711.jar

    --launcher.library

    plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.401.v20161122-1740

    -product

    org.eclipse.epp.package.jee.product

    --launcher.defaultAction

    openFile

    -showsplash

    org.eclipse.platform

    --launcher.defaultAction

    openFile

    --launcher.appendVmargs

    -vmargs

    -Dosgi.requiredJavaVersion=1.8

    -XX:+UseG1GC

    -XX:+UseStringDeduplication

    -Dosgi.requiredJavaVersion=1.8

    -Xms256m

    -Xmx1024m


    相关文章

      网友评论

          本文标题:Eclipes遇到的问题及解决办法

          本文链接:https://www.haomeiwen.com/subject/sopbxftx.html