[Querydsl Maven 오류]com.mysema.codegen.model.Type

SEOP·2023년 4월 28일
0

Mac에서 작업을 하다가 윈도우로 프로젝트를 옮겨서 작업을 하려고
compile을 눌렀더니
com.mysema.codegen.model.Type 오류가 떴다.
알고보니 버전 문제 때문이라고 한다.

pom.xml에서 Querydsl을 주입했던 부분에 version을 주석 처리

<!-- Querydsl을 사용하기 위해 주입 -->
<dependency>
    <groupId>com.querydsl</groupId>
    <artifactId>querydsl-jpa</artifactId>
<!--			<version>4.3.1</version>-->
</dependency>
<dependency>
    <groupId>com.querydsl</groupId>
    <artifactId>querydsl-apt</artifactId>
<!--			<version>4.3.1</version>-->
</dependency>

그런 후, 컴파일을 한번 해보자

참고 : https://gallery-k.tistory.com/297

profile
응애 나 애기 개발자

0개의 댓글