com.mysema.codegen.model.Type (1) 썸네일형 리스트형 QueryDsl Unable to load class 'com.mysema.codegen.model.Type' springboot에서 querydsl 5.x를 실행하게 되면 아래와 같은 메세지가 나온다. Unable to load class 'com.mysema.codegen.model.Type'. This is an unexpected error. Please file a bug containing the idea.log file. 5.x가 되면서 추가 설정이 필요하게 되면서 나오는 오류 메세지이다. 해결 방법은 build.gradle에 설정을 추가 하면 됩니다. 아래의 부분을 추가 하면된다. configurations { compileOnly { extendsFrom annotationProcessor } querydsl.extendsFrom compileClasspath } 전체 설정 내용 def query.. 이전 1 다음