【Eclipse】【2】遇到的问题
前言:
1,导入maven项目有红叉
SRE实战 互联网时代守护先锋,助力企业售后服务体系运筹帷幄!一键直达领取阿里云限量特价优惠。2,pom.xml出错
3,debug启动老是跳转到断点,提示SilentExitException
正文:
1,导入maven项目有红叉
右键项目 → maven → update project
参考博客:
eclipse导入maven项目有红叉及pom.xml出错的问题的解决 - Jennifer Bai - CSDN博客
https://blog.csdn.net/baijingfeng_1/article/details/79507931
2,pom.xml出错:error:Plugin execution not covered by lifecycle configuration: org.codehaus.mojo:exec-maven-plugin:1.5.0:exec (execution: node, phase: compile)
方法1:命令行窗口:mvn clean → mvn eclipse:clean → mvn eclipse:eclipse
方法2:windows → Preferences → Maven → Error/Warnings下Ignore掉这个 plugin execution错误
参考博客:
同1
3,debug启动老是跳转到断点,提示SilentExitException
Window → Preference → Java → Debug,将“Suspend execution on uncaught exceptions”的勾去掉即可
参考博客:
eclipse debug启动老是跳转到断点,提示SilentExitException - 赖进杰的专栏 - CSDN博客
https://blog.csdn.net/ljj_9/article/details/79403729
