Spring Springbootプロジェクトでquerydslを設定する
build.gradle
dependencies {
...
implementation 'com.querydsl:querydsl-jpa'
}
test {
useJUnitPlatform()
}
def querydslDir = "$buildDir/generated/querydsl"
querydsl {
jpa = true
querydslSourcesDir = querydslDir
}
sourceSets {
main.java.srcDir querydslDir
}
configurations {
querydsl.extendsFrom compileClasspath
}
compileQuerydsl {
options.annotationProcessorPath = configurations.querydsl
}
intellijを使用する場合
settings-構築、実行、配置-図面から
IntelliJ IDEAに変更
Reference
この問題について(Spring Springbootプロジェクトでquerydslを設定する), 我々は、より多くの情報をここで見つけました https://velog.io/@newnormal21/Springboot-프로젝트에서-querydsl-설정하기テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol