1. Spring Data JPA 리포지토리 ex) interface를 만든다. //User entity와 userId 들어가서Long public interface UserRepository extends JpaRepository { @EntityGraph(attributePaths = "authorities") Optional findOneWithAuthoritiesByUsername(String username); } 2. Spring Data JPA 사용자 정의 Repository 순서 : 가. 사용자 정의 인터페이스 작성 -> 나. 사용자 정의 인터페이스 구현 -> 다. 스프링 데이터 리포지토리에 사용자 정의 인터페이스 상속 1) 기존 MemberRepository(JpaRepository상속)..