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.
DataTablesRepositoryFactoryBeanseems to be rather simple. It performs a simple check and then does it's own thing or invokessuper, i.e.JpaRepositoryFactoryBeanBy reimplementing that but inheriting from
EnversRevisionRepositoryFactoryBeaninstead you should be able to use both in one project.