首页 > 其他 > 详细

解决Perhaps you are running on a JRE rather than a JDK?和MojoFailureException问题

时间:2018-10-28 14:33:49      阅读:213      评论:0      收藏:0      [点我收藏+]

最近使用eclipse时在maven中安装Tomcat插件出现错误

话不多说,先来一段错误提示

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) on project SingleWebTest: Compilation failure
[ERROR] No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK?
[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而不是JDK?

于是我打开eclipse一看,我的JDK呢????如下图

技术分享图片

 

查了一下资料,原来eclipse是默认运行在JRE上的,如上图是JRE1.8.0,而不是JDK1.8.但是maven又需要JDK,这可咋整?

------------------------------------------------------------------------------------------------------------------------------------------------------

 

咳咳咳,划重点了,解决办法如下

打开【Window】-->【Prefrences】-->【Java】-->【Installed JREs】如下图

 

技术分享图片

 

 

点击【add】-->【Standar VM】-->【next】

 

技术分享图片

 

 

找到JDK路径,然后【finish】

 

技术分享图片

 

关闭窗口,勾选上刚才安装的JDK

 

技术分享图片

 

 点击OK,然后重新【maven build】一下

[INFO] Changes detected - recompiling the module!
[WARNING] File encoding has not been set, using platform encoding UTF-8, i.e. build is platform dependent!
[INFO] Compiling 1 source file to F:\workplace1\SingleWebTest\target\classes
[INFO] 
[INFO] <<< tomcat7-maven-plugin:2.2:run (default-cli) < process-classes @ SingleWebTest <<<
[INFO] 
[INFO] 
[INFO] --- tomcat7-maven-plugin:2.2:run (default-cli) @ SingleWebTest ---
[INFO] Running war on http://localhost:80/
[INFO] Creating Tomcat server configuration at F:\workplace1\SingleWebTest\target\tomcat
[INFO] create webapp with contextPath: 

 成功构建,收功。

 

解决Perhaps you are running on a JRE rather than a JDK?和MojoFailureException问题

原文:https://www.cnblogs.com/ws410/p/9865458.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!