我需要编写一些注释处理器。我发现this blog post提到了如何在一般环境和Eclipse中完成这项工作。
然而,我正在使用IntelliJ IDEA和Gradle,并且如果有更好的(因为,不那么乏味)的方法,那么就会喜欢它。我在找什么:
我的git和Gradle技能是初级水平。我很感激任何帮助这项任务。谢谢。
答案 0 :(得分:9)
是的,可以将处理器移动到分离的模块并从另一个模块使用它(参见下面的querydslapt
)。
我建议您实施自己的AbstractProcessor
并使用它:
dependencies {
....
// put dependency to your module with processor inside
querydslapt "com.mysema.querydsl:querydsl-apt:$querydslVersion"
}
task generateQueryDSL(type: JavaCompile, group: 'build', description: 'Generates the QueryDSL query types') {
source = sourceSets.main.java // input source set
classpath = configurations.compile + configurations.querydslapt // add processor module to classpath
// specify javac arguments
options.compilerArgs = [
"-proc:only",
"-processor", "com.mysema.query.apt.jpa.JPAAnnotationProcessor" // your processor here
]
// specify output of generated code
destinationDir = sourceSets.generated.java.srcDirs.iterator().next()
}
您可以找到完整示例here
答案 1 :(得分:9)
另一种解决方案(在我看来更干净)可能有两个subprojects,然后简单地使包含注释处理器的那个解决方案成为主要的依赖关系。因此,如果项目的根目录中包含子项目的两个目录:core
和annotation-processors
,则还需要一个settings.gradle
文件,其中包含以下内容:
include 'core'
include 'annotation-processors'
然后在核心项目的gradle文件中:
dependencies {
compile project(':annotation-processors')
}
应该这样做,你不必处理自定义编译任务及其类路径。