darrachequesne / spring-data-jpa-datatables

Spring Data JPA extension to work with the great jQuery plugin DataTables (https://datatables.net/)
Apache License 2.0
440 stars 174 forks source link

Extend JpaRepository instead of PagingAndSortingRepository #161

Open nikolatx opened 1 week ago

nikolatx commented 1 week ago

Hi, It would be very nice to extend JpaRepository instead of PagingAndSortingRepository in order to enable saveAndFlush()/flush() metods. Or is there another way to do saveAndFlush()?

darrachequesne commented 1 week ago

Hi! The DataTablesRepository interface already extends JpaRepository:

https://github.com/darrachequesne/spring-data-jpa-datatables/blob/4a9653b408238daa7f7bceadd80eca0ef601e4e1/src/main/java/org/springframework/data/jpa/datatables/repository/DataTablesRepository.java#L21-L22

Or am I missing something?