250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 다대다
- dfs
- 스프링 폼
- 다대일
- 지연로딩
- querydsl
- FetchType
- BOJ
- 동적sql
- JPQL
- 데코레이터
- CHECK OPTION
- 연결리스트
- fetch
- shared lock
- 일대다
- exclusive lock
- PS
- 즉시로딩
- 낙관적락
- SQL프로그래밍
- 이진탐색
- 힙
- 비관적락
- 연관관계
- eager
- 유니크제약조건
- 스토어드 프로시저
- execute
- 백트래킹
Archives
- Today
- Total
흰 스타렉스에서 내가 내리지
QueryDSL 세팅 본문
728x90
1. Dependency 설치
dependencies {
implementation 'com.querydsl:querydsl-jpa:5.0.0:jakarta'
annotationProcessor "com.querydsl:querydsl-apt:5.0.0:jakarta"
annotationProcessor "jakarta.annotation:jakarta.annotation-api"
annotationProcessor "jakarta.persistence:jakarta.persistence-api"
}
2. Configuration
프로젝트 어디에서나 접근할 수 있도록, QueryDSL 빈을 생성한다.
이때 EntityManager 도 여기서 주입해 놓는다.
@Configuration
@RequiredArgsConstructor
public class QueryDSLConfig {
private final EntityManager em;
@Bean
public JPAQueryFactory jpaQueryFactory() {
return new JPAQueryFactory(em);
}
}
3. Repository 에서 사용
@Repository
@RequiredArgsConstructor
public class MemberRepositoryImpl implements MemberRepository {
private final JPAQueryFactory query;
@Override
public boolean existsByEmail(String email) {
return query.selectOne()
.from(member)
.where(member.email.eq(email))
.fetchFirst() != null;
}
}
'JPA' 카테고리의 다른 글
[Querydsl] 결과 조회 (0) | 2024.04.18 |
---|---|
[Querydsl] 검색 조건 쿼리 (0) | 2024.04.18 |
[JPQL] 조회해서 null 일 경우, 지정한 값을 반환하는 COALESCE (0) | 2024.04.14 |
JPQL 서브쿼리, BETWEEN, IN, LIKE, NULL, 컬렉션 식 (0) | 2024.04.14 |
페치 조인 :: join fetch (0) | 2024.04.13 |