idea中的springboot+gradle项目报错springboot configuration annotation processor not found in classpath
Posted mediocrePeople
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了idea中的springboot+gradle项目报错springboot configuration annotation processor not found in classpath相关的知识,希望对你有一定的参考价值。
idea中的springboot项目,打开某个类run.halo.app.config.properties.HaloProperties.java,报错(使用gradle编译):
springboot configuration annotation processor not found in classpath
网上的解决方案是pom.xml文件里面添加如下配置.
<!-- 自定义的元数据依赖->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
但是,这个时maven项目的解决方案,我的时gradle项目。
另外一个问题:我的很多java类中报错:找不到方法,
我观察了下,都是getter和setter方法。
原因:我没有安装lombok插件,在idea中安装lombok插件,即可解决。
以上是关于idea中的springboot+gradle项目报错springboot configuration annotation processor not found in classpath的主要内容,如果未能解决你的问题,请参考以下文章
idea gradle+springboot 构建多项目 运行 打包
IntelliJ IDEA环境下Gradle搭建SpringBoot项目