관리 메뉴

moozi

Repository 본문

Spring Boot JPA

Repository

moozi 2022. 5. 30. 15:25
package com.mycompany.memo.repository;

import com.mycompany.memo.entity.Memo;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.querydsl.QuerydslPredicateExecutor;

public interface MemoRepository extends JpaRepository<Memo,Long> , QuerydslPredicateExecutor<Memo> {
}

 

'Spring Boot JPA' 카테고리의 다른 글

Controller  (0) 2022.05.30
ServiceImpl  (0) 2022.05.30
Service  (0) 2022.05.30
Entity, DTO  (0) 2022.05.30
Memo 프로젝트 생성  (0) 2022.05.30
Comments