报错原因

插件不支持当前使用的Spring Boot版本

解决办法

将Spring Boot的版本改为2.6.2即可,其它版本我没有试过,如果要使用其它版本的Spring Boot,请自行尝试

1
2
3
4
5
6
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.6.2</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>