Interface RepositoryFactorySupportFactory

All Known Implementing Classes:
SearchRepositoryFactorySupportFactory

public interface RepositoryFactorySupportFactory
Enables creation of RepositoryFactorySupport instances for custom repository implementations.
  • Method Summary

    Modifier and Type
    Method
    Description
    org.springframework.data.repository.core.support.RepositoryFactorySupport
    createRepositoryFactory(Class<?> repositoryInterface, jakarta.persistence.EntityManager entityManager)
    Returns RepositoryFactorySupport instance for repository interface.
  • Method Details

    • createRepositoryFactory

      org.springframework.data.repository.core.support.RepositoryFactorySupport createRepositoryFactory(Class<?> repositoryInterface, jakarta.persistence.EntityManager entityManager)
      Returns RepositoryFactorySupport instance for repository interface.
      Parameters:
      repositoryInterface - repository interface for which to return implementation of RepositoryFactorySupport
      entityManager - entity manager
      Returns:
      RepositoryFactorySupport instance for repository interface