如何从相同的继承方法创建多个查询方法,以在Spring数据JPA中使用不同的实体图?

时间:2019-02-21 14:56:49

标签: spring-data-jpa

存储库:

public interface HotelDao extends JpaRepository<Hotel, Integer>,
        JpaSpecificationExecutor<Hotel> {
    @EntityGraph(HOTEL_BASIC)
    @Override
    Page<Hotel> findAll(Specification<Hotel> spec, Pageable pageable);
}

findAll(Specification<>, Pageable)继承自JpaSpecificationExecutor。如果我想让另一个findAll(Specification<>, Pageable)使用另一个@EntityGraph,该怎么办?

0 个答案:

没有答案