Maven错误: 找不到或无法加载主类

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:compile (default-compile) on project webapp: Compilation failure
[ERROR] Unable to locate the Javac Compiler in:
[ERROR] D:\develop\java1.8\..\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

运行时找不到或无法加载主类,此时是我们的JRE System Library中缺少toolsjar包

此时我们右击项目打开properties

Maven错误: 找不到或无法加载主类_第1张图片Maven错误: 找不到或无法加载主类_第2张图片Maven错误: 找不到或无法加载主类_第3张图片Maven错误: 找不到或无法加载主类_第4张图片Maven错误: 找不到或无法加载主类_第5张图片


此时如果还是不能解决问题,可以在project中clean一下,或者配置一下.class 文件存放的路径在target/classes中,或者配置一下环境变量


你可能感兴趣的:(java)