티스토리 뷰
스프링 부트 2.6 미만은 이전 글을 참고해주세요.
최근에 스프링 부트 프로젝트를 생성하여 이전 글 처럼 querydsl을 설정하다보면 정상 동작하지 않습니다.
따라서 build.gradle 파일을 아래 처럼 변경해주어야 합니다.
buildscript {
ext {
queryDslVersion = "5.0.0"
}
}
plugins {
id 'org.springframework.boot' version '2.7.2' // 2.6 이상일 때 적용
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id "com.ewerk.gradle.plugins.querydsl" version "1.0.10"
id 'java'
}
group = 'com.example'
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'
// querydsl dependencies
implementation "com.querydsl:querydsl-jpa:${queryDslVersion}"
annotationProcessor "com.querydsl:querydsl-apt:${queryDslVersion}"
compileOnly 'org.projectlombok:lombok'
runtimeOnly 'com.h2database:h2'
annotationProcessor 'org.projectlombok:lombok'
testCompileOnly 'org.projectlombok:lombok' testAnnotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
test {
useJUnitPlatform()
}
// script for 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' 카테고리의 다른 글
스프링 부트 2.6 이상에서 Querydsl 5.0 사용시 주의할 점 (0) | 2022.08.24 |
---|---|
[Querydsl] 5.0.0 업데이트 변경 사항 (0) | 2021.08.05 |
[Querydsl] 스프링 데이터가 지원하는 기능 (0) | 2021.07.27 |
[Querydsl] Spring Data JPA와 같이 사용하기 (0) | 2021.07.26 |
[Querydsl] SQL 함수 사용하기 (0) | 2021.07.25 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Spring Boot Tutorial
- 스프링 부트 튜토리얼
- JSON
- proto3
- 함께 자라기
- intellij
- 헥사고날 아키텍처
- Linux
- 스프링부트
- 스프링 부트
- leetcode
- spring boot jwt
- 알고리즘
- 스프링 부트 회원 가입
- r
- spring boot app
- 스프링 데이터 jpa
- @ManyToOne
- JPA
- Java
- 스프링 부트 애플리케이션
- spring boot application
- Jackson
- QueryDSL
- 함께 자라기 후기
- Spring Boot JPA
- 클린 아키텍처
- gRPC
- Spring Boot
- Spring Data JPA
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함