- Querydsl의 경우 설정이 간단하지 않다. - Spring Boot를 통해 프로젝트를 생성한 상태에서 진행한다. - build.gradle plugins { id 'java' id 'org.springframework.boot' version '2.7.14' id 'io.spring.dependency-management' version '1.0.15.RELEASE' } group = 'study' version = '0.0.1-SNAPSHOT' java { sourceCompatibility = '11' } configurations { compileOnly { extendsFrom annotationProcessor } } repositories { mavenCentral() } depende..