Specified VM install not found: type Standard VM, name jre7

后端 未结 11 1401
伪装坚强ぢ
伪装坚强ぢ 2021-02-01 00:10

Specified VM install not found: type Standard VM, name jre7 Have you ever encountered this problem in Eclipse while building an ant file? Then this article is for you. Deleting

相关标签:
11条回答
  • 2021-02-01 00:52

    Removed below file and build maven project again, worked for me.

    .metadata.plugins\org.eclipse.debug.core.launches\.xml.launch"

    0 讨论(0)
  • 2021-02-01 00:53

    This is a preferred way tell projects which JDK container to use, especially true if two or more devs are using the same version controlled eclipse project folder.

    Window/Preferences/Java/Installed JREs
    List one or more JDKs installed on your computer. Eclipse defaults name to jdk1.X.X_XX you should keep it as is. Never link project build settings directly to use these names.

    Window/Preferences/Java/Installed JREs/Execution Environments
    List of common jvm environments such as JavaSE-1.6 and JavaSE-1-7 names. Click rows and choose jre instance on the right side panel. These names are common and all team members should already have them in Eclipse installation.

    Step 1: This is where you may accidentally have nothing chosen if JREs were uninstalled or names changed in InstalledJREs setting. You may get

    Specified vm install not found error dialog.

    Step 2: Choose 2nd mouse on build.xml file/Run As/Ant Build... popup menu entry. Click on JRE tab and choose execution environment. This may have obsolete value from the previous jdk values.

    Project Properties/Java Build Path/Libraries
    Add Library.../JRE System Library/(x)Execution environment
    Choose execution environment to be used for this project. Team members may not have exact _XX jdk build but they can use the same version controlled eclipse project settings. Execution environment mapping hides user specific details.

    0 讨论(0)
  • 2021-02-01 01:00

    Best answer found at

    It happened for me after Un-installing Java and installing new version.

    All I have to do is in eclipse open Installed JREs from Windows --> Preferences --> Java --> Installed JREs

    Then Add new JRE information. Details can be found here

    0 讨论(0)
  • 2021-02-01 01:01

    The last answer is absolutely correct, however a fast track way is to delete the project reference from eclipse (make sure to keep unchecked delete source) and import your project folder again. This way the project configurations are reset by eclipse using the new jdk. But a wonderful post it did help me.

    0 讨论(0)
  • 2021-02-01 01:01

    (ant file)Run As--> External Tool Configuations, go to JRE tab and choose JRE

    0 讨论(0)
提交回复
热议问题