QueryDSL
-
스프링 데이터 Common - 2 (스프링 데이터 JPA - 5)Programming/Spring Data JPA 2021. 1. 1. 15:47
1. 커스텀 리포지토리 만들기 - 스프링 데이터 리포지토리 인터페이스에 기능을 추가하거나 기본 기능을 덮어쓸 수 있음 1) 커스텀 리포지토리 인터페이스 정의 public interface PostCustomRepository { List findMyPost(); void delete(T post); } 2) 인터페이스 구현 클래스 만들기 (기본 접미어는 Impl) public class PostCustomRepositoryImpl implements PostCustomRepository { @Autowired EntityManager entityManager; @Override public List findMyPost() { return entityManager.createQuery("SELECT p F..