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

eclipse启动spring boot项目时出现问题:springboot错误: 找不到或无法加载主类
spring boot错误: 找不到或无法加载主类_第1张图片

解决办法:

  1. 通过cmd命令行,进入项目目录进行,mvn clean install 进行编译,项目install后,再到eclipse 上选中项目按F5刷新项目,再运行问题解决。
  2. 在eclipse 上选中项目,点击clean 清理项目再运行。
    spring boot错误: 找不到或无法加载主类_第2张图片
  3. 排查项目代码是否有问题,可以进入cmd, cd 进入项目目录
    执行命令:
    mvn clean compile
    mvn install
    mvn spring-boot:run
    上面三个命令进行编译,启动。
  4. 常出现于复制的项目。
    查看boot面板,打开config,核对Main type的设置是否正确。
    spring boot错误: 找不到或无法加载主类_第3张图片
    spring boot错误: 找不到或无法加载主类_第4张图片

你可能感兴趣的:(框架,后端)