Interface AcmeOrderRepository
-
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<AcmeOrder,Long>,org.springframework.data.jpa.repository.JpaRepository<AcmeOrder,Long>,org.springframework.data.repository.PagingAndSortingRepository<AcmeOrder,Long>,org.springframework.data.repository.query.QueryByExampleExecutor<AcmeOrder>,org.springframework.data.repository.Repository<AcmeOrder,Long>
@Repository public interface AcmeOrderRepository extends org.springframework.data.jpa.repository.JpaRepository<AcmeOrder,Long>
Spring Data repository for the AcmeOrder entity.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<AcmeOrder>findByOrderId(long orderId)-
Methods inherited from interface org.springframework.data.repository.CrudRepository
count, delete, deleteAll, deleteAll, deleteById, existsById, findById, save
-
Methods inherited from interface org.springframework.data.jpa.repository.JpaRepository
deleteAllInBatch, deleteInBatch, findAll, findAll, findAll, findAll, findAllById, flush, getOne, saveAll, saveAndFlush
-
-