-
提示错误为未配置SpringBoot配置注解处理器解决方法
解决方案:在pom.xml中添加一个依赖,然后重启Idea即可
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>