解决一个bug

 Eclipse中用Maven编译报错的解决方法

  环境】

  eclipse-jee-juno-SR2-win32-x86_64

  apache-maven-3.0.4

 

  【Eclipse报错】

复制代码
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:compile (default-compile) on project sxf_transaction: Compilation failure 
[ERROR] Unable to locate the Javac Compiler in: 
[ERROR] C:\Program Files\Java\jre6\..\lib\tools.jar 
[ERROR] Please ensure you are using JDK 1.4 or above and 
[ERROR] not a JRE (the com.sun.tools.javac.Main class is required). 
[ERROR] In most cases you can change the location of your Java 
[ERROR] installation by setting the JAVA_HOME environment variable. 
[ERROR] -> [Help 1] 
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. 
[ERROR] Re-run Maven using the -X switch to enable full debug logging. 
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles: 
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException 
复制代码


  【原因】

  根据错误提示,需要JDK而不是JRE,并且需1.4以上版本。Eclipse的默认运行环境是JRE,而Maven编译需要JDK。

 

  【排错】

   1. 在cmd中用命令echo %JAVA_HOME%查看环境变量,指向正确。

  2. 修改eclipse.ini文件,加入下面2句,依然不起作用。

  -vm
  C:\Program Files\Java\jdk1.7.0_02\bin\javaw.exe

复制代码
-startup
plugins/org.eclipse.equinox.launcher_1.3.0.v20120522-1813.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.200.v20120522-1813
-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
256m
-vm
C:\Program Files\Java\jdk1.7.0_02\bin\javaw.exe
--launcher.defaultAction
openFile
-vmargs
-Xms40m
-Xmx512m
复制代码

  3. 在Eclipse->Window->Preferences->Java->Installed JREs->Add...->Standard VM里,JRE home选择
JDK的目录。再勾选,如下图,问题解决。

 

  首先申明这篇文章是转载的,原文:http://www.cnblogs.com/qyddbear/archive/2013/03/12/2955809.html。然后运行

成功的话是这个样子的,今天遇到这个问题,害我郁闷+纠结了好久。谢谢原作者啦。

 

 

posted @ 2013-03-28 14:17  若雪封尘  阅读(6304)  评论(1编辑  收藏  举报