TIL

공통 인터페이스 기능

공통 인터페이스 생성

스프링 데이터 JPA가 구현 클래스 대신 생성

import org.springframework.data.jpa.repository.JpaRepository;

public interface MemberRepository extends JpaRepository<Member, Long> {
}

img.png

공통 인터페이스 분석

주요 메서드