I have a JpaRepository interface that is not being implemented (or injected?) by Spring data when it\'s in a separate package from the main class containing the @ComponentSc
That's probably the expected behaviour (see docs here). The package containing the @EnableAutoConfiguration is actually the default guess for both @EnableJpaRepostories and @EntityScan. You will need both if those packages are disjunct from the main autoconfig package.