具体问题截图:

spring cloud 错误记录 java.lang.NoSuchMethodError: org.springframework.boot.builder.SpringApplicationBui

 

原因:

使用spring boot 的版本问题,发生错误时使用的版本是2.0.0 

解决办法:

将spring boot版本改为1.5.2 

 

<parent>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-starter-parent</artifactId>
   <version>1.5.2.RELEASE</version>
   <relativePath/> <!-- lookup parent from repository -->
</parent>

 

相关文章:

  • 2021-09-24
  • 2021-08-25
  • 2021-11-04
  • 2021-06-05
  • 2021-11-08
  • 2021-09-23
  • 2021-09-02
  • 2022-12-23
猜你喜欢
  • 2021-12-06
  • 2022-12-23
  • 2022-12-23
  • 2021-07-17
  • 2022-12-23
  • 2022-12-23
  • 2021-06-16
相关资源
相似解决方案