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 |
Tags
- JPQL
- 이진탐색
- FetchType
- 다대일
- eager
- execute
- 백트래킹
- querydsl
- BOJ
- 비관적락
- 스토어드 프로시저
- shared lock
- 동적sql
- CHECK OPTION
- 즉시로딩
- 힙
- PS
- 지연로딩
- 데코레이터
- exclusive lock
- 다대다
- fetch
- 유니크제약조건
- 낙관적락
- 연결리스트
- SQL프로그래밍
- 연관관계
- 스프링 폼
- 일대다
- dfs
Archives
- Today
- Total
흰 스타렉스에서 내가 내리지
[Querydsl] 동적 쿼리 1 - BooleanBuilder 사용 본문
728x90
# 동적 쿼리를 해결하는 두가지 방식
1. BooleanBuilder
2. Where 다중 파라미터 사용
private List<Member> searchMember1(String usernameCond, Integer ageCond){
BooleanBuilder builder = new BooleanBuilder();
if (usernameCond != null){
builder.and(member.username.eq(usernameCond));
}
if (ageCond != null){
builder.and(member.age.eq(ageCond));
}
return queryFactory
.selectFrom(member)
.where(builder)
.fetch();
}
'JPA' 카테고리의 다른 글
[Querydsl] 수정, 삭제 벌크 연산 (0) | 2024.04.20 |
---|---|
[Querydsl] 동적 쿼리 2 - Where 다중 파라미터 사용 (0) | 2024.04.20 |
[Querydsl] distinct (0) | 2024.04.19 |
[Querydsl] 프로젝션 결과 반환 - DTO 조회 (0) | 2024.04.19 |
[Querydsl] 서브쿼리 (0) | 2024.04.19 |