I have this enabled in my database config. Which enabled to fetch Audit logs with the help of JPA methods. (spring-data-envers) is being used in POM for this
@EnableJpaRepositories(
repositoryFactoryBeanClass = EnversRevisionRepositoryFactoryBean.class)
Now I want to use jquery datatable's back-end processing. For this I will be using (spring-data-jpa-datatables) in my POM.
@EnableJpaRepositories(repositoryFactoryBeanClass = DataTablesRepositoryFactoryBean.class)
How can I use both of them in one Single Project.
DataTablesRepositoryFactoryBean
seems to be rather simple. It performs a simple check and then does it's own thing or invokessuper
, i.e.JpaRepositoryFactoryBean
By reimplementing that but inheriting from
EnversRevisionRepositoryFactoryBean
instead you should be able to use both in one project.