How does one create an EnversRevisionRepository
dynamically given a Java Class object?
Thanks to this answer https://stackoverflow.com/a/22342025/3771679 one can successfully create a JpaRepository
dynamically, but I would like to achieve the same for a repository that is equivalent to:
public interface MyRevisionedRepository extends RevisionRepository<X,Y,Z>, JpaRepository<X,Y> {
}
Spring Data provides
EnversRevisionRepositoryImpl
as the defaultRevisionRepository
implementation.As you can see in the repository constructor:
you need three things to create a new instance of that repository:
An
EntityManager
, which you can easily obtain using@PersistenceContext
or probably (I never tested it) by@Autowiring
.A
JpaEntityInformation
. Following the example ofSimpleJpaRepository
:RevisionEntityInformation
. It is curious, as the object is being asserted to not be null but actually it seems unused in the rest of the implementation code. Here, we can follow the example ofEnversRevisionRepositoryFactoryBean
:DefaultRevisionEntityInformation
is package scoped, but you can easily reproduce it:In summary: