Hemant Besracodeinjava.hashnode.dev·Jul 21, 2024Spring Data JPA ProjectionsProjections in Spring Data JPA is a way to retrieve only specific columns from the database or combine fields from multiple entities into a single DTO. This is particularly useful when you need specific fields from entities. Here is how you can do pr...26 readsInterview QuestionsJPA projection
Merge Simpsonblog.letsdev.me·Nov 13, 2023Spring Data JPA: DB 님, 안 쓰는 컬럼은 빼고 주세요 (JPA Projection)JPA Repository로 조회하기 👩🎓 이런 글을 보시는 분들은 대부분 JPA Repository의 기본 조회 요령을 아실 것 같습니다만, 그래도 기본 전제는 공유해야 글에 좋겠죠. ✨ JPA Repository는 기본적으로 몇 가지 조회 메서드를 제공하고, 또 네이밍 규칙만 따르면 알맞게 동작하는 커스텀 조회 메서드를 추가할 수 있습니다. 다음은 네이밍 규칙의 간단한 예시입니다. findImSoCoolByUsername(String ...133 readsjpa