Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Querydsl 설정 #110

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions be/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ build/
!**/src/main/**/build/
!**/src/test/**/build/

### Querydsl
src/main/generated

Comment on lines +8 to +10
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM👍

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Querydsl에서 생성된 Q 클래스들을 왜 .gitignore에 등록했는지에 대한 내용도 추가하겠습니다.

Querydsl을 사용하면, 컴파일 시점에 Q 클래스를 생성합니다. 이 Q 클래스는 엔티티 클래스의 필드와 연관 관계를 모두 포함하고 있으며, JPA 쿼리를 작성할 때 사용됩니다.

그러나, Q 클래스는 컴파일 시점에 생성되기 때문에, 소스 코드에 직접 포함되지 않습니다. 따라서, 별도의 파일로 생성되어야 합니다.

Q 클래스는 자주 변경되지 않으며, 소스 코드와는 별개의 파일로 생성됩니다. 따라서, 이 파일들은 버전 관리 시스템에서 제외해야 합니다. 그렇지 않으면, 굳이 변경되지 않는 파일들까지 커밋되어, 저장소 용량이 증가하고, 이를 동기화하는 데 시간이 오래 걸릴 수 있습니다. 따라서, Querydsl에서 생성되는 Q 클래스들은 .gitignore 파일에 추가하여, Git 저장소에서 제외하는 것이 좋습니다.

작성된 경로는 Querydsl 설정을 src/main/generated에 생성되도록 했기 때문입니다.

### STS ###
.apt_generated
.classpath
Expand Down
24 changes: 24 additions & 0 deletions be/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,14 @@ dependencies {
implementation 'io.awspring.cloud:spring-cloud-starter-aws:2.4.2'
implementation 'com.amazonaws:aws-java-sdk-s3'
testImplementation 'io.findify:s3mock_2.13:0.2.6'

// Querydsl
implementation "com.querydsl:querydsl-jpa"
implementation "com.querydsl:querydsl-core"
implementation "com.querydsl:querydsl-collections"
annotationProcessor "com.querydsl:querydsl-apt:${dependencyManagement.importedProperties['querydsl.version']}:jpa" // querydsl JPAAnnotationProcessor 사용 지정
annotationProcessor "jakarta.annotation:jakarta.annotation-api" // java.lang.NoClassDefFoundError (javax.annotation.Generated) 대응 코드
annotationProcessor "jakarta.persistence:jakarta.persistence-api" // java.lang.NoClassDefFoundError (javax.annotation.Entity) 대응 코드
}

tasks.named('test') {
Expand All @@ -85,4 +93,20 @@ task copyGitSubmodule(type: Copy) {
include 'db/**'
}

// Querydsl 설정부
def generated = 'src/main/generated'

// querydsl QClass 파일 생성 위치를 지정
tasks.withType(JavaCompile) {
options.getGeneratedSourceOutputDirectory().set(file(generated))
}

// java source set 에 querydsl QClass 위치 추가
sourceSets {
main.java.srcDirs += [ generated ]
}

// gradle clean 시에 QClass 디렉토리 삭제
clean {
delete file(generated)
}