eclipse jee + maven + m2eclipse。。。

必须要注意的:

一定要将eclipse使用的JRE改成JDK的,否则使用maven编译项目时可能会报如下错误:

org.apache.maven.plugin.CompilationFailureException: Compilation failure
Unable to locate the Javac Compiler in:
  C:\Program Files\Java\jre1.5.0_07\..\lib\tools.jar
Please ensure you are using JDK 1.4 or above and
not a JRE (the com.sun.tools.javac.Main class is required).
In most cases you can change the location of your Java
installation by setting the JAVA_HOME environment variable.

解决办法:
Windows->preferences->java->installed jREs ->中加上tools.jar
或者是Windows->preferences->java->installed jREs ->将原来使用JRE改为使用JDK!
--------------------------还有一种恶心的方法如下--------------------------
就是在项目的pom.xml文件中加入如下配置,注意systemPath标签中的值要写你当前机器上起作用的JDK中的tools.jar相匹配!(此方法严重不推荐,因为在maven2版本之后,这种方式不被推荐,会提示此配置是畸形的!)

  <!-- jdk|运行maven命令时报“缺少sun的tools.jar”的错误,加入以下依赖,保持eclipse使用的JRE是JDK的JRE,而不是普通的JRE -->

<dependency>

<groupId>com.sun</groupId>

<artifactId>tools</artifactId>

<version>1.6.0</version>

<scope>system</scope>

<systemPath>C:/Program Files/Java/jdk1.6.0_23/lib/tools.jar</systemPath>

</dependency>

你可能感兴趣的:(eclipse jee + maven + m2eclipse。。。)