gpt4 book ai didi

gradle - AnnotationProcessor 和依赖项

转载 作者:行者123 更新时间:2023-12-04 23:37:04 31 4
gpt4 key购买 nike

我正在使用 gradle/querydsl 和 JPA 2.1。

我想使用 APT (QEntities) 生成 querydsl 元数据。

为此,我使用了 gradle-apt-plugin 和 gradle 4.7

在我的项目中,我使用以下命令配置了 compileJava 选项:
compileJava {
options.annotationProcessorGeneratedSourcesDirectory = file("$projectDir/src/generated2/java")
}

在我的依赖项中,我添加了

compile 'org.springframework.boot:spring-boot-starter-data-jpa'"
annotationProcessor "com.querydsl:querydsl-apt:$querydslVersion:jpa"

spring starter 将包含 javax.persistence.Entity 类的 org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final jar 添加到 compileClasspath。

启动 compileJava 任务时出现错误:caused by: java.lang.NoClassDefFoundError: javax/persistence/Entity at com.querydsl.apt.jpa.JPAAnnotationProcessor.createConfiguration(JPAAnnotationProcessor.java:37)
不明白为什么注解处理器不能加载这个类。

最佳答案

以防其他人正在搜索。这是我的完整解决方案(基于您的回复)。重要的部分是net.ltgt.apt*也在 Eclipse 中激活代码生成的插件,以及最后三个 querydsl 依赖项。

buildscript {
ext {
springBootVersion = '2.0.5.RELEASE'
}
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}


plugins { // activates the automatic code generation
id 'net.ltgt.apt' version '0.18'
id 'net.ltgt.apt-eclipse' version '0.18'
}


apply plugin: 'java'
apply plugin: 'eclipse-wtp'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
apply plugin: 'war'

group = 'com.test'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = 1.8

repositories {
mavenCentral()
}

configurations {
providedRuntime
}


dependencies {
runtimeOnly 'com.h2database:h2'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-web'
providedRuntime 'org.springframework.boot:spring-boot-starter-tomcat'


testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.boot:spring-boot-starter-webflux'

// querydsl
annotationProcessor 'com.querydsl:querydsl-apt:4.1.3:jpa'
annotationProcessor 'org.springframework.boot:spring-boot-starter-data-jpa' // needed because the query dsl annotation processor doesn't recognize javax.persistence.Entity
compile 'com.querydsl:querydsl-jpa:4.1.3'
}

关于gradle - AnnotationProcessor 和依赖项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50537096/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com