欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

spring boot configuration annotation processor not found in classpath

程序员文章站 2022-03-24 12:37:24
...

(1)在pom.xml配置文件中加入下面的代码:

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-configuration-processor</artifactId>
    <optional>true</optional>
</dependency>

(2)如果出现:Re-run spring boot configuration annotation processor to update generate metadata的提示忽略他。
(3)IDEA会弹出来更新:右下角:improt change 点击它。
(4)如果这样还不行,记得在Model里,把 Setter和Getter都添加上去。这样一定没问题了。