我正在尝试为新项目设置 Gradle 构建脚本。该项目将使用 JPA 2 和Querydsl。
在Querydsl 参考文档的下一页上,他们解释了如何为 Maven 和 Ant 设置 JPAAnnotationProcessor (apt)。
我想对 Gradle 做同样的事情,但我不知道怎么做,我心爱的朋友在这方面没有给我太多帮助。我需要找到一种方法来调用带有参数的 Javac(最好没有任何额外的依赖项),以便能够指定 apt 应该使用的处理器(?)
我正在尝试为新项目设置 Gradle 构建脚本。该项目将使用 JPA 2 和Querydsl。
在Querydsl 参考文档的下一页上,他们解释了如何为 Maven 和 Ant 设置 JPAAnnotationProcessor (apt)。
我想对 Gradle 做同样的事情,但我不知道怎么做,我心爱的朋友在这方面没有给我太多帮助。我需要找到一种方法来调用带有参数的 Javac(最好没有任何额外的依赖项),以便能够指定 apt 应该使用的处理器(?)
虽然我对使用 Ant 的 gradle 没有任何问题,但我同意原始海报在这种情况下是不可取的。我在这里找到了 Tom Anderson 的一个 github 项目,它描述了我认为更好的方法。我对其进行了少量修改以满足我的需要(输出到 src/main/generated),使其看起来像:
sourceSets {
generated
}
sourceSets.generated.java.srcDirs = ['src/main/generated']
configurations {
querydslapt
}
dependencies {
compile 'mine go here'
querydslapt 'com.mysema.querydsl:querydsl-apt:2.7.1'
}
task generateQueryDSL(type: Compile, group: 'build', description: 'Generates the QueryDSL query types') {
source = sourceSets.main.java
classpath = configurations.compile + configurations.querydslapt
options.compilerArgs = [
"-proc:only",
"-processor", "com.mysema.query.apt.jpa.JPAAnnotationProcessor"
]
destinationDir = sourceSets.generated.java.srcDirs.iterator().next()
}
compileJava.dependsOn generateQueryDSL
这种方法对我来说比另一种更有意义,如果它也对你有用,那么你可以选择另一种方法来生成 querydsl。
我没有测试它,但这应该可以工作:
repositories {
mavenCentral()
}
apply plugin: 'java'
dependencies {
compile(group: 'com.mysema.querydsl', name: 'querydsl-apt', version: '1.8.4')
compile(group: 'com.mysema.querydsl', name: 'querydsl-jpa', version: '1.8.4')
compile(group: 'org.slf4j', name: 'slf4j-log4j12', version: '1.6.1')
}
compileJava {
doFirst {
Map otherArgs = [
includeAntRuntime: false,
destdir: destinationDir,
classpath: configurations.compile.asPath,
sourcepath: '',
target: targetCompatibility,
source: sourceCompatibility
]
options.compilerArgs = [
'-processor', 'com.mysema.query.apt.jpa.JPAAnnotationProcessor',
'-s', "${destinationDir.absolutePath}".toString()
]
Map antOptions = otherArgs + options.optionMap()
ant.javac(antOptions) {
source.addToAntBuilder(ant, 'src', FileCollection.AntType.MatchingTask)
options.compilerArgs.each {value ->
compilerarg(value: value)
}
}
}
}
希望能帮助到你。
这家伙的要点对我有用:https ://gist.github.com/EdwardBeckett/5377401
sourceSets {
generated {
java {
srcDirs = ['src/main/generated']
}
}
}
configurations {
querydslapt
}
dependencies {
compile 'org.hibernate.javax.persistence:hibernate-jpa-2.0-api:1.0.1.Final'
compile "com.mysema.querydsl:querydsl-jpa:$querydslVersion"
querydslapt "com.mysema.querydsl:querydsl-apt:$querydslVersion"
}
task generateQueryDSL(type: JavaCompile, group: 'build', description: 'Generates the QueryDSL query types') {
source = sourceSets.main.java
classpath = configurations.compile + configurations.querydslapt
options.compilerArgs = [
"-proc:only",
"-processor", "com.mysema.query.apt.jpa.JPAAnnotationProcessor"
]
destinationDir = sourceSets.generated.java.srcDirs.iterator().next()
}
compileJava {
dependsOn generateQueryDSL
source generateQueryDSL.destinationDir
}
compileGeneratedJava {
dependsOn generateQueryDSL
options.warnings = false
classpath += sourceSets.main.runtimeClasspath
}
clean {
delete sourceSets.generated.java.srcDirs
}
idea {
module {
sourceDirs += file('src/main/generated')
}
}
使用 Gradle 1.3 和更新版本(旧版本未测试),您可以像这样使用 Querydsl APT:
configurations {
javacApt
}
dependencies {
javacApt 'com.mysema.querydsl:querydsl-apt:3.3.0'
}
compileJava {
options.compilerArgs <<
'-processorpath' << (configurations.compile + configurations.javacApt).asPath <<
'-processor' << 'com.mysema.query.apt.jpa.JPAAnnotationProcessor'
}
这些编译器参数直接传递给 javac。
要与 groovy 编译器一起使用,请替换compileJava
为compileGroovy
.
这是一个简单的设置,可以与 netbeans 无缝集成。Javac 基本上会在没有太多干预的情况下完成所有需要的工作。其余的都是一些小技巧,可以使它与 Netbeans 等 IDE 一起工作。
apply plugin:'java'
dependencies {
// Compile-time dependencies should contain annotation processors
compile(group: 'com.mysema.querydsl', name: 'querydsl-apt', version: '1.8.4')
compile(group: 'com.mysema.querydsl', name: 'querydsl-jpa', version: '1.8.4')
compile(group: 'org.slf4j', name: 'slf4j-log4j12', version: '1.6.1')
}
ext {
generatedSourcesDir = file("${buildDir}/generated-sources/javac/main/java")
}
// This section is the key to IDE integration.
// IDE will look for source files in both in both
//
// * src/main/java
// * build/generated-sources/javac/main/java
//
sourceSets {
main {
java {
srcDir 'src/main/java'
srcDir generatedSourcesDir
}
}
}
// These are the only modifications to build process that are required.
compileJava {
doFirst {
// Directory should exists before compilation started.
generatedSourcesDir.mkdirs()
}
options.compilerArgs += ['-s', generatedSourcesDir]
}
就是这样。Javac 将完成剩下的工作。
要将 JPA 元模型生成器与 Gradle 一起使用,我在 build.gradle 中成功使用了以下内容,它就像一个魅力:
buildscript {
ext {}
repositories { // maven central & plugins.gradle.org/m2 }
dependencies {
// other dependencies, e.g. Spring
classpath('gradle.plugin.at.comm_unity.gradle.plugins:jpamodelgen-plugin:1.1.1')
}
apply plugin: 'at.comm_unity.gradle.plugins.jpamodelgen'
dependencies {
compile('org.hibernate:hibernate-jpamodelgen:5.1.0.Final')
}
jpaModelgen {
jpaModelgenSourcesDir = "src/main/java"
}
compileJava.options.compilerArgs += ["-proc:none"]
}
在构建任务中,会生成以“_”为后缀的静态元模型类。之后,它们与我的 @Entity 模型位于同一目录中。
当您取出所有 XML 时,Querydsl Ant 示例应该可以正常工作。所以它最终是这样的:
javac -sourcepath ${src} -cp ${cp} -proc:only -processor com.mysema.query.apt.jpa.JPAAnnotationProcessor -s ${generated}
src
,cp
并且generated
您可能能够从 Gradle 中提取。