class $AppClassLoader cannot be cast to class

时间:2025-04-04 15:04:54

在码云上下载的另一个springboot项目,启动报错:class $AppClassLoader cannot be cast to class ($AppClassLoader and are in module of loader 'bootstrap')

解决方案:

  • 将中的热部署依赖去掉(或注释掉)
<!--热启动-->
<dependency>
   <groupId></groupId>
   <artifactId>spring-boot-devtools</artifactId>
   <optional>true</optional>
   <scope>true</scope>
</dependency>
  • 将SpringBoot版本升到版本:
    修改前:
<parent>
        <groupId></groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.5.</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>

修改后:

 <parent>
        <groupId></groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.1.</version>
        <relativePath/>
    </parent>

总结:将项目中的热部署依赖注释,并将springboot由原来的1.5.9升级到2.1.3后,该问题解决。

原文链接:

  • /qq_40722208/article/details/105287695