通过problem控制台查看,显示unknown

尝试降低springboot版本,问题没了,应该是与maven jdk等版本冲突导致

这里JDK 1.8  mave 3.6.1  降低springboot版本到2.1.1.RELEASE问题解决。

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

 

相关文章:

  • 2021-10-23
  • 2022-01-28
  • 2022-02-07
  • 2021-05-16
  • 2021-09-24
  • 2022-01-21
  • 2021-06-05
  • 2021-04-20
猜你喜欢
  • 2022-01-02
  • 2021-07-18
  • 2021-11-19
  • 2022-12-23
  • 2021-08-04
  • 2022-12-23
相关资源
相似解决方案