QueryDsl 설정방법
QueryDsl
은 기존 dependency들을 추가하는 경우와 다르게 설정파일들을 조금 손봐줘야한다.
최신 스프링5 버전에서 사용하기 위해 설정하지 않으면Unable to load class 'com.mysema.codegen.model.Type'
compileQuerydsl 에러가 난다.
- plugin 추가
- 라이브러리 추가
- 각종 dir, config
**************************************************************
buildscript {
ext {
queryDslVersion = "5.0.0"
}
}
***************************************************************
plugins {
id 'org.springframework.boot' version '2.6.4'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
1. plugin 추가
**************************************************************
id 'com.ewerk.gradle.plugins.querydsl' version '1.0.10'
**************************************************************
id 'java'
}
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.github.gavlyukovskiy:p6spy-spring-boot-starter:1.5.7'
compileOnly 'org.projectlombok:lombok'
2.라이브러리 추가
**************************************************************
implementation "com.querydsl:querydsl-jpa:${queryDslVersion}"
implementation "com.querydsl:querydsl-apt:${queryDslVersion}"
**************************************************************
runtimeOnly 'com.h2database:h2'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
tasks.named('test') {
useJUnitPlatform()
}
3. 각종 dir, config
**************************************************************
def querydslDir = "$buildDir/generated/querydsl"
querydsl {
jpa = true
querydslSourcesDir = querydslDir
}
sourceSets {
main.java.srcDir querydslDir
}
compileQuerydsl{
options.annotationProcessorPath = configurations.querydsl
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
querydsl.extendsFrom compileClasspath
}
**************************************************************
compileQuerydsl을 돌리면 3번에 설정해놓은 설정파일대로 해당 경로에 QueryDsl 전용 Entity를 생성해준다.
"$buildDir/generated/querydsl"에 생성된 모습
터미널에서 명령어로도 가능
./gradlew clean
./gradlew compileQuerydsl
QueryDsl 잘 적용됐는지 Test하기
- 간단하게 Hello Entity 생성
- QuerydslCompile시에 생긴 QHello 확인
- query 실행을 위임할
Querydsl
의JPAQueryFactory
객체로 쿼리 호출
//1. 간단하게 Hello Entity 생성
package study.querydsl.entity;
import lombok.Getter;
import lombok.Setter;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
@Entity
@Getter @Setter
public class Hello {
@GeneratedValue @Id
private Long id;
}
//test코드 작성
@SpringBootTest
@Transactional
class QuerydslApplicationTests {
@Autowired
EntityManager em;
@Test
void contextLoads() {
Hello hello = new Hello();
em.persist(hello);
JPAQueryFactory query = new JPAQueryFactory(em);
QHello qHello = QHello.hello;
//쿼리와 관련된 것은 compileQuerydls을 돌려 만든
//qEntity를 사용해야 한다.
Hello result = query.selectFrom(qHello)
.fetchOne();
assertThat(result).isEqualTo(hello);
assertThat(result.getId()).isEqualTo(hello.getId());
}
}
'스프링 > QueryDsl' 카테고리의 다른 글
[QueryDsl] 서브쿼리 사용하기 (0) | 2022.03.10 |
---|---|
[QueryDsl] Join + On절 + Fetch join (0) | 2022.03.08 |
[QueryDsl] 정렬, 페이징, Tuple을 이용한 특정 값 Select (max,min,avg,sum 등) (0) | 2022.03.06 |
[Querydsl] 다양한 Fetch 결과 받아보기 (0) | 2022.03.05 |
[QueryDsl] QueryDsl 기본 사용법, 검색 유형별 예시 (0) | 2022.03.05 |