To support an extended repository:
- Create a
@NoRepositoryBean
interface in your project with your desired method(s) similar toExtendedJpaRepository
- Implement the above interface similarly to as shown in
ExtendedJpaRepositoryImpl
- Use the
ExtendedRepositoryConfiguration
class to configure Spring Boot to use your above implementation as the base class - Create repository beans for your entity beans, but extend the interface from step 1