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
- 자바
- Spring Boot
- java
- JDBC
- 스프링 핵심 기능
- pointcut
- 스프링
- 인프런
- 알고리즘
- Servlet
- Exception
- http
- JPQL
- Thymeleaf
- transaction
- 그리디
- spring
- 백준
- jpa
- kotlin
- Greedy
- 김영한
- db
- Android
- SpringBoot
- Proxy
- AOP
- 스프링 핵심 원리
- QueryDSL
- springdatajpa
Archives
- Today
- Total
목록Q-Type 생성 방법 (1)
개발자되기 프로젝트
기본 Q-Type
1. Q 클래스 인스턴스 생성 방법 별칭 직접 지정 QMember qMember = new QMember("m"); //별칭 직접 지정 기본 인스턴스 사용 QMember qMember = QMember.member; //기본 인스턴스 사용 기본 인스턴스를 사용하면 QMember를 staic으로 등록해서 코드 줄일 수 도 있음 package study.querydsl; import com.querydsl.jpa.impl.JPAQueryFactory; import org.assertj.core.api.Assertions; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; import org.springframework.be..
인프런/[인프런] QueryDsl
2021. 9. 1. 22:30