티스토리 뷰
Spring
[Querydsl] Unable to load class 'com.mysema.codegen.model.Type' 에러 해결 방법
Gray__ 2023. 1. 12. 22:07
스프링 부트 2.7 버전 이상과 Querydsl 5.0 버전 이상을 설정할 때 발생하는 에러입니다.
Q타입 클래스를 만들기 위해 Gradle -> Tasks -> Other -> compileQuerydsl을 실행할 때 발생합니다.
Querydsl과 gradle 설정 정보가 일치하지 않기 때문입니다.
1. 그러므로 build.gradle에 querydsl 버전 설정을 추가한 후
buildscript {
ext {
queryDslVersion = "5.0.0"
}
}
2. dependencies에 아래 2줄을 추가하면 됩니다.
implementation "com.querydsl:querydsl-jpa:${queryDslVersion}"
annotationProcessor "com.querydsl:querydsl-apt:${queryDslVersion}"
즉 querydsl의 버전을 명시하고, querydsl-jpa, querydsl-apt를 추가하면 해결할 수 있습니다.
정상적으로 compileQuerydsl이 실행됩니다.
Q타입 클래스가 정상적으로 생성된 것을 볼 수 있습니다.
전체 build.gradle 코드 입니다.
buildscript {
ext {
queryDslVersion = "5.0.0"
}
}
plugins {
id 'java'
id 'org.springframework.boot' version '2.7.7'
id 'io.spring.dependency-management' version '1.0.15.RELEASE'
id 'com.ewerk.gradle.plugins.querydsl' version '1.0.10'
}
group = 'study'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation "com.querydsl:querydsl-jpa:${queryDslVersion}"
annotationProcessor "com.querydsl:querydsl-apt:${queryDslVersion}"
implementation 'com.github.gavlyukovskiy:p6spy-spring-boot-starter:1.8.1'
compileOnly 'org.projectlombok:lombok'
runtimeOnly 'com.h2database:h2'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
tasks.named('test') {
useJUnitPlatform()
}
//querydsl 추가 시작
def querydslDir = "$buildDir/generated/querydsl"
querydsl {
jpa = true
querydslSourcesDir = querydslDir
}
sourceSets {
main.java.srcDir querydslDir
}
configurations {
querydsl.extendsFrom compileClasspath
}
compileQuerydsl {
options.annotationProcessorPath = configurations.querydsl
}
//querydsl 추가 끝
'Spring' 카테고리의 다른 글
[Spring] 필터(filter)와 인터셉터(interceptor)의 특징과 차이점 (4) | 2023.05.08 |
---|---|
[Spring] Mock 객체의 리턴값이 왜 null이 나올까? (1) | 2023.04.23 |
[Spring] JPQL로 단일 Entity 찾을 시 에러 (No entity found for query) (0) | 2022.06.26 |
[Spring] JPA ManyToOne, OneToOne 매핑 된 객체를 가져올 때 문제점 (0) | 2022.06.17 |
[Spring] JPA 상속관계 매핑, @MappedSuperClass (0) | 2022.06.15 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 5주차 회고
- CI/CD
- 스프링 부트
- 회고
- 피움
- 스프링 프레임워크
- dm-zoned
- 프로젝트
- ZNS
- 네트워크
- 팀프로젝트
- 3차 데모데이
- dm-zoned 코드분석
- 스프링 Logback
- jpa
- 우테코
- 알림기능개선기
- 환경 별 로깅 전략 분리
- 피움 6주차 회고
- 파이썬
- Spring
- 스프링MVC
- 백준
- 2차 데모데이
- ZNS SSD
- 우테코 회고
- java
- 런칭 페스티벌
- 8주차 회고
- 알림개선기
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
글 보관함