We have lots of repositories defined via the interface extends JpaRepository pattern. When running integration tests or certain entry points to our application, we only need a very small subset of those repositories.
Can we lazily load the actual repository implimentations?
Something equivalent to @Lazy on a @Bean? Note: I did at least attempt the naive solution of annotating the repository interface with @Lazy to no avail.