idea中的springboot项目,打开某个类run.halo.app.config.properties.HaloProperties.java,报错(使用gradle编译): springboot configuration annotation processor not found in classpath 网上的解决方案是pom.xml文件里面添加如下配置. <!-- 自定义的元数据依赖-><dependency> <groupId>org.springfr…
Springboot1.5以上版本,在使用 @ConfigurationProperties注解的时候会提示“Spring Boot Configuration Annotation Processor not found in classpath”, 这是因为新版本已经取消了对location的支持,替代方案是使用@Configuration和@PropertySource进行组合使用,例如:@Primary@Configuration@PropertySource(value = "clas…