1. 程式人生 > >Spring Boot 異常 spring boot Configuration Annotation Proessor not found in classpath

Spring Boot 異常 spring boot Configuration Annotation Proessor not found in classpath

在類中 使用 @ConfigurationProperties 註解時 報 spring boot Configuration Annotation Proessor not found in classpath

異常;

參考網上的解決方法

在 pom 檔案中 新增

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

最後問題解決