When using Spring Data Envers with Spring Boot, the EnversRevisionRepositoryFactoryBean has to be configured via @EnableJpaRepositories:
@EnableJpaRepositories(repositoryFactoryBeanClass = EnversRevisionRepositoryFactoryBean.class)
Maybe an auto configuration could take care of it. Would it make sense?
In case it does, I would be happy to prepare a pull request.
When using Spring Data Envers with Spring Boot, the
EnversRevisionRepositoryFactoryBeanhas to be configured via@EnableJpaRepositories:Maybe an auto configuration could take care of it. Would it make sense?
In case it does, I would be happy to prepare a pull request.