We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
테이블 간 관계가 복잡한 상품과 계좌의 경우 조회 쿼리의 복잡도가 증가하여 유지보수에 어려움이 있을 것으로 예상됨. 이를 해결하기 위해 정적 타이핑을 통해 동적으로 쿼리를 생성하고 관리할 수 있는 QueryDSL의 도입을 고려 중.
QueryDSL이 WITH 절 지원을 하지 않아 기존 복잡한 쿼리를 변환하지 못하는 문제가 발생함. 우선 WITH 절을 사용하는 쿼리는 Native Query로 사용하는 것으로 결정
The text was updated successfully, but these errors were encountered:
feat/#16 QueryDSL 설정
d82aed3
Merge pull request #53 from HanaPiece/feat/query-dsl-set
ab56c02
duddn2012
No branches or pull requests
개요
테이블 간 관계가 복잡한 상품과 계좌의 경우 조회 쿼리의 복잡도가 증가하여 유지보수에 어려움이 있을 것으로 예상됨.
이를 해결하기 위해 정적 타이핑을 통해 동적으로 쿼리를 생성하고 관리할 수 있는 QueryDSL의 도입을 고려 중.
할 일
이슈
QueryDSL이 WITH 절 지원을 하지 않아 기존 복잡한 쿼리를 변환하지 못하는 문제가 발생함.
우선 WITH 절을 사용하는 쿼리는 Native Query로 사용하는 것으로 결정
The text was updated successfully, but these errors were encountered: