본문 바로가기
Jpa/querydsl

[Querydsl 1편] querydsl 상속, 구현 없이 환경 세팅

by 무대포 개발자 2022. 1. 3.
728x90
반응형

source 는 Github 에 있습니다.

목차는 Querydsl 목차 에 있습니다.

[Querydsl 1편] querydsl 상속, 구현 없이 환경 세팅

spring boot, querydsl 상속, 구현 없이 환경 세팅

  • 기존에 querydsl 을 구현해줄려면 interface 를 만들어야하고 구현체를 만들어야 했습니다.
  • querydsl 을 사용할 때 상속, 구현없이 환경 세팅하는 법에 대해서 정리했습니다.

public interface MemberRepositoryCustom {
    void test();
}

public class MemberRepositoryImpl implements MemberRepositoryCustom {
    xxx
    xxx
    xxx         
}

source

  • 아래와 같이 소스를 작성한다면 generated 폴더에 Qxxxxx 파일이 만들어집니다.

결론

  • qerydsl 사용할 때, interface, 구현체를 만들지 않고 사용하기에 클래스 수를 줄일 수 있습니다.

reference

댓글