I have a Spring Boot application annotated with @EnableJpaRepositories(repositoryBaseClass = CommonRepository.class)
.
Almost all of the repositories need to implement some custom logic which is done using repositoryBaseClass
.
Is there a way to create a repository that will be excluded from repositoryBaseClass
mechanism?