为了账号安全,请及时绑定邮箱和手机立即绑定

我在使用@configurationProperties注解时 idea弹出 Spring Boot Annotion processor not found in classpath

http://img1.sycdn.imooc.com//58dd11180001647b11620275.jpg

把注解去掉就不提示了

正在回答

16 回答

我也遇到了,在类上加以下代码可解决:

@Component

将此javabean放入SpringIOC容器

如果还出错,就可能是其他错误了:

我的错误是我在idea中没有将XxxApplication.java 与 Controller 等包同级

XxxApplication.java中的@

SpringBootApplication无法自动装配导致的


0 回复 有任何疑惑可以回复我~

在填了了@Component注解后,会自动消失

0 回复 有任何疑惑可以回复我~

同是这个问题,解决办法!pom文件加依赖包

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

然后出现Re-run Spring Boot Configuration Annotation Processor to update generated metadata

接着解决办法:Editor -> General -> Appearance,    取消选择 "Show Spring Boot metadata panel"


0 回复 有任何疑惑可以回复我~

同是这个问题,解决办法!pom文件加依赖包

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

然后出现Re-run Spring Boot Configuration Annotation Processor to update generated metadata

接着解决办法:Editor -> General -> Appearance,    取消选择 "Show Spring Boot metadata panel"

0 回复 有任何疑惑可以回复我~

添加 spring-boot-configuration-processor 后编译源代码

0 回复 有任何疑惑可以回复我~

在spring-boot 2.0版本中,直接引入spring-boot-configuration-processor是不行,

<dependency>
   <groupId>org.springframework.cloud</groupId>
   <artifactId>spring-cloud-context</artifactId>
</dependency>

测试发现,引入这个可行,即使你删除了spring-boot-configuration-processor,也是可以的,但是不知道为什么,有了解的,麻烦跟下帖

0 回复 有任何疑惑可以回复我~
class 加上以下注解
@PropertySource("classpath:application.yml")


1 回复 有任何疑惑可以回复我~
#1

入门或放弃

完美解决
2018-09-03 回复 有任何疑惑可以回复我~

Sping boot 2.0

pom.xml文件添加了依赖,可以运行,但是依然会提示Spring Boot Annotion processor not found in classpath

0 回复 有任何疑惑可以回复我~

不用管它提示,也不用导入spring-boot-configuration-processor就是可以正常运行的。

0 回复 有任何疑惑可以回复我~

你在你的配置类上加注解

@EnableConfigurationProperties(属性类.class)


2 回复 有任何疑惑可以回复我~
#1

慕容4497254

确实可以
2019-02-26 回复 有任何疑惑可以回复我~
首页上一页12下一页尾页

举报

0/150
提交
取消
2小时学会Spring Boot
  • 参与学习       151599    人
  • 解答问题       1079    个

Spring Boot入门视频教程,你将学会使用Spring Boot快速构建应用程序

进入课程

我在使用@configurationProperties注解时 idea弹出 Spring Boot Annotion processor not found in classpath

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信