Jpa/querydsl10 spring boot, jpa, querydsl 정리 - 2편 조인 예제 (연관관계 없음) 이 문서는 추후 다시 볼 목적으로 정리한 글입니다. 조인 예제 (연관관계 없음) 서로 다른 두 테이블을 조인하는 예제. 조인해서 member id 로 조회. member 와 address 가 있으며, 둘은 1:1 라 가정. Entity source public interface MemberRepositoryCustom { List findByTelNo(String telNo); MemberInfo findMemberInfo(String id); } @RequiredArgsConstructor public class MemberRepositoryImpl implements MemberRepositoryCustom { private final JPAQueryFactory queryFactory; @Overr.. 2020. 7. 11. spring boot, jpa, querydsl 정리 - 1편 환경 구성 (spring boot, jpa, querydsl, gradle, multi project) 이 문서는 추후 다시 볼 목적으로 정리한 글입니다. 환경 Intellij Spring boot jpa querydsl gradle (multi project) github source spring-boot-jpa-example source 참고 1. 프로젝트 전체적인 구성 RootProject : spring-boot-example SubProject : spring-boot-jpa-example 2. 프로젝트 구성 방법 Intellij multi project 만드는 법 참고 root build.gradle jpa sub build.gradle 2020. 7. 8. 이전 1 2 3 다음