3

Could not create the Java virtual machine当我这样做时,我收到一条错误消息mvn clean install。我现在该怎么办?我应该改变什么pom.xml吗?我的 java version-1.6 和 maven version-3.0.2,都设置在pom.xml

错误是::

[ERROR] Failure executing javac,  but could not parse the error:
[ERROR] Could not create the Java virtual machine.
[ERROR] -> [Help 1]
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal o
rg.apache.maven.plugins:maven-compiler-plugin:2.3.1:compile (default-compile) on
 project accelerator-common: Compilation failure
Failure executing javac,  but could not parse the error:
Could not create the Java virtual machine.


        at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor
.java:213)
        at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor
.java:153)
        at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor
.java:145)
        at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProje
ct(LifecycleModuleBuilder.java:84)
        at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProje
ct(LifecycleModuleBuilder.java:59)
        at org.apache.maven.lifecycle.internal.LifecycleStarter.singleThreadedBu
ild(LifecycleStarter.java:183)
        at org.apache.maven.lifecycle.internal.LifecycleStarter.execute(Lifecycl
eStarter.java:161)
        at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:320)
        at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:156)
        at org.apache.maven.cli.MavenCli.execute(MavenCli.java:537)
        at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:196)
        at org.apache.maven.cli.MavenCli.main(MavenCli.java:141)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
java:39)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
sorImpl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:597)
        at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Laun
cher.java:290)
        at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.jav
a:230)
        at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(La
uncher.java:409)
        at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:
352)
Caused by: org.apache.maven.plugin.CompilationFailureException: Compilation fail
ure
Failure executing javac,  but could not parse the error:
Could not create the Java virtual machine.


        at org.apache.maven.plugin.AbstractCompilerMojo.execute(AbstractCompiler
Mojo.java:656)
        at org.apache.maven.plugin.CompilerMojo.execute(CompilerMojo.java:128)
        at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(Default
BuildPluginManager.java:101)
        at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor
.java:209)
        ... 19 more
4

4 回答 4

0

您需要找出它无法创建它的原因。一个常见的原因是使用了无效的命令行选项。例如M2_OPTS=-Xmx1m会给你这个错误。

于 2012-05-30T12:12:11.973 回答
0

请检查您在 mvn clean 命令中指定的 java 系统属性,例如 -Xmx 或 -Xms。我想命令和内存大小之间可能有一个空格。即您可能指定 了-Xmx 128而应该是-Xmx128。虽然这是一个疯狂的猜测

于 2012-05-30T12:12:53.260 回答
0

您是从 Eclipse 或 Netbeans 等 IDE 中使用它吗?

如果是这样,您可以:

  • 将 JAVA_HOME 设置为指向您的 JDK。
  • 在 IDE 中配置 Maven 选项以使用 Maven 安装而不是捆绑安装。
  • 将 Java 运行时配置为使用 JDK 而不是 JRE。

在 Eclipse 中配置 Maven 安装

  • 转到窗口 > 首选项 > Maven > 安装。
  • 添加您的 Maven 安装。单击Add并选择您的 Maven 安装目录。
  • 选择它作为您的 Maven 安装。

在 Eclipse 中配置已安装的 JRE 选项

  • 转到窗口 > 首选项 > Java > 已安装的 JRE。
  • 添加一个指向 JDK 主目录的标准 VM。
  • 没有 VM 参数。当然,如果你有任何你可以添加它们。
  • 将其标记为您的 JRE。

默认情况下,Eclipse 使用来自 Maven 插件的嵌入式 Maven 安装,有时使用非 JDK JRE 作为默认 Java 运行时。

因此,使其工作的步骤是安装 JDK,设置 JAVA_HOME,将 Maven 解压到一个目录,然后在 Eclipse 中更改 Maven 安装并将 JRE 指向 JDK JRE。

我希望它有所帮助。

于 2012-05-30T13:40:22.223 回答
0

JAVA_HOME还将您的环境变量与环境中的 JAVA_HOME\bin匹配PATH。它应该是相同的拱型。

我遇到了这个问题。我有 16GB 内存,即使在设置set MAVEN_OPTS=-Xmx1024m了几次 maven 执行后它也无法工作并给出错误。

Error: Could not create the Java Virtual Machine.
Error: A fatal exception has occurred. Program will exit.
于 2014-07-03T05:23:08.943 回答