Annotation Interface EnableJpaTemporalRepositories
@Target(TYPE)
@Retention(RUNTIME)
@EnableJpaRepositories(repositoryFactoryBeanClass=DefaultRepositoryFactoryBean.class)
public @interface EnableJpaTemporalRepositories
Annotation to enable JPA repositories and the TemporalRepository extension. Will scan the package of the annotated
configuration class for Spring Data repositories by default.
Repositories extending TemporalRepository will use implementation from TemporalRepositoryImpl whereas
other repositories will use their default implementation (e.g. JpaRepository has implementation from
JpaRepositoryImplementation).
- See Also:
TemporalRepository