注解处理器使用

注解处理器使用

一. 背景

注解处理器,可以用在编译期 或者运行期自动生成代码。

1. annotationProcessor

如果是 Java代码,可以使用 annotationProcessor 启用注解处理器

dependencies {
     annotationProcessor project(':xx')
     annotationProcessor 'org.greenrobot:eventbus-annotation-processor:3.1.1'
}

如果使用 IDEA 需要 手动去 编译设置那边开启

Make sure that you have at least IntelliJ 2018.2.x (needed since support for annotationProcessors from the maven-compiler-plugin is from that version). Enable annotation processing in IntelliJ (Build, Execution, Deployment -> Compiler -> Annotation Processors)

2. kapt

如果注解要用在 Kolint 上面,那么需要使用 kapt

参考 官方设置 (https://kotlinlang.org/docs/kapt.html#using-in-gradle)

  1. 引入 plugin
  2. 使用apt
dependencies {
    kapt 'groupId:artifactId:version'
}

//可选
kapt {
    arguments {
        arg("key", "value")
    }
}

kapt 'groupId:artifactId:version'
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值