728x90
반응형
배경
JSP를 사용하는 환경에서 QueryDSL 라이브러리를 추가 후 빌드 시 'QueryDSL org.apache.jasper.JasperException: Unable to compile class for JSP:' 오류가 발생
원인
querydsl-apt 내 org.eclipse.jdt.core.compiler:ecj 종속성 강제
해결
querydsl-apt에 org.eclipse.jdt.core.compiler:ecj 종속성 제외
<dependency>
<groupId>com.querydsl</groupId>
<artifactId>querydsl-apt</artifactId>
<scope>provided</scope>
<exclusions>
<exclusion>
<groupId>org.eclipse.jdt.core.compiler</groupId>
<artifactId>ecj</artifactId>
</exclusion>
</exclusions>
</dependency>
728x90
반응형
'spring > spring jpa' 카테고리의 다른 글
[SpringBoot] JPA Comment (주석 추가) 설정 방법 (0) | 2024.02.02 |
---|---|
[QueryDSL] FullText 검색을 위한 Match ... against 절 사용법 (0) | 2023.08.24 |
[SpringBoot2] JPA Master/Slave 구조 분기 처리 (2) | 2023.08.23 |
[SpringBoot] JPA Projection (0) | 2021.06.23 |
[Spring] JPA 연관 관계 매핑 및 제거 (0) | 2021.06.18 |
댓글