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

Change ID type Integer to Long #119

Closed sarrek closed 4 years ago

sarrek commented 4 years ago

Hello,

Thanks for you work ! After some hours i have finally created my project correctly with all my dependencies.

But all of my objet have "id" type Long, can you convert to accept id with Long type (findById(Long)). It’s better for performance.

Thanks in advance.

sarrek commented 4 years ago

Fixed :

public interface EmployeeRepository extends DataTablesRepository<Employee, Long> {

Just change type in Repository.