Class BaseJpaRepositoryImpl<D,P extends MappableTo<D>,ID>

java.lang.Object
org.springframework.data.jpa.repository.support.SimpleJpaRepository<P,ID>
com.broadleafcommerce.billing.common.provider.jpa.repository.BaseJpaRepositoryImpl<D,P,ID>
All Implemented Interfaces:
BaseJpaRepository<D,P,ID>, BaseRepository<D,P,ID>, com.broadleafcommerce.common.extension.data.PagingAndSortingRepository<P,ID>, org.springframework.data.jpa.repository.JpaRepository<P,ID>, org.springframework.data.jpa.repository.JpaSpecificationExecutor<P>, org.springframework.data.jpa.repository.support.JpaRepositoryConfigurationAware, org.springframework.data.jpa.repository.support.JpaRepositoryImplementation<P,ID>, org.springframework.data.repository.CrudRepository<P,ID>, org.springframework.data.repository.ListCrudRepository<P,ID>, org.springframework.data.repository.ListPagingAndSortingRepository<P,ID>, org.springframework.data.repository.PagingAndSortingRepository<P,ID>, org.springframework.data.repository.query.QueryByExampleExecutor<P>, org.springframework.data.repository.Repository<P,ID>

@Deprecated(since="1.0.0") public class BaseJpaRepositoryImpl<D,P extends MappableTo<D>,ID> extends org.springframework.data.jpa.repository.support.SimpleJpaRepository<P,ID> implements BaseJpaRepository<D,P,ID>
Deprecated.
  • Nested Class Summary

    Nested classes/interfaces inherited from interface org.springframework.data.jpa.repository.JpaSpecificationExecutor

    org.springframework.data.jpa.repository.JpaSpecificationExecutor.SpecificationFluentQuery<T extends Object>
  • Constructor Summary

    Constructors
    Constructor
    Description
    BaseJpaRepositoryImpl(Class<P> domainClass, jakarta.persistence.EntityManager em)
    Deprecated.
     
    BaseJpaRepositoryImpl(org.springframework.data.jpa.repository.support.JpaEntityInformation<P,?> entityInformation, jakarta.persistence.EntityManager entityManager)
    Deprecated.
     
  • Method Summary

    Modifier and Type
    Method
    Description
    jakarta.persistence.EntityManager
    em()
    Deprecated.
     
    <I, O> List<O>
    findByIdUsingPartitioning(List<I> ids, Integer partitionSize, I pad, Function<List<I>,List<O>> baseFindByIds)
    Deprecated.
     
    newFromDomain(D domain)
    Deprecated.
     
    <T> List<List<T>>
    partitionWithPadding(List<T> incoming, Integer partitionSize, T pad)
    Deprecated.

    Methods inherited from class org.springframework.data.jpa.repository.support.SimpleJpaRepository

    count, count, count, delete, delete, deleteAll, deleteAll, deleteAllById, deleteAllByIdInBatch, deleteAllInBatch, deleteAllInBatch, deleteById, exists, exists, existsById, findAll, findAll, findAll, findAll, findAll, findAll, findAll, findAll, findAll, findAll, findAllById, findBy, findBy, findById, findOne, findOne, flush, getById, getCountQuery, getCountQuery, getDomainClass, getOne, getQuery, getQuery, getQuery, getQuery, getQueryHints, getQueryHintsForCount, getReferenceById, getRepositoryMethodMetadata, readPage, readPage, save, saveAll, saveAllAndFlush, saveAndFlush, setEscapeCharacter, setProjectionFactory, setRepositoryMethodMetadata

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface com.broadleafcommerce.billing.common.repository.BaseRepository

    findAll

    Methods inherited from interface org.springframework.data.repository.CrudRepository

    count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findById, save

    Methods inherited from interface org.springframework.data.jpa.repository.JpaRepository

    deleteInBatch

    Methods inherited from interface com.broadleafcommerce.common.extension.data.PagingAndSortingRepository

    findAll, findAll
  • Constructor Details

    • BaseJpaRepositoryImpl

      public BaseJpaRepositoryImpl(Class<P> domainClass, jakarta.persistence.EntityManager em)
      Deprecated.
    • BaseJpaRepositoryImpl

      public BaseJpaRepositoryImpl(org.springframework.data.jpa.repository.support.JpaEntityInformation<P,?> entityInformation, jakarta.persistence.EntityManager entityManager)
      Deprecated.
  • Method Details