Spring Boot 踩坑之路之 Configuration Annotation Proessor not found in classpath

Posted Roy-Xin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring Boot 踩坑之路之 Configuration Annotation Proessor not found in classpath相关的知识,希望对你有一定的参考价值。

1. 出现spring boot Configuration Annotation Proessor not found in classpath的提示是在用了@ConfigurationProperties这个注解时,所以问题出现在ConfigurationProperties注解。
2. 根据提示的not found in classpath,查询此注解的使用关于怎么指定classpath,进而查询location,spring boot1.5以上版本@ConfigurationProperties取消location注解.

官方解决方案,Maven引入依赖

 

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

 


以上是关于Spring Boot 踩坑之路之 Configuration Annotation Proessor not found in classpath的主要内容,如果未能解决你的问题,请参考以下文章

Spring Boot之集成Redis:Spring Cache + Redis

webpack之polyfill踩坑之路

Spring-boot之jQuery File Upload后台配置方法

Spring Boot 开发系列一 开发踩坑

Spring boot + Websocket

踩坑专栏Cannot resolve org.springframework.boot:spring-boot-starter-web:unknown