darrachequesne / spring-data-jpa-datatables

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

How do I use VO replace Entity with DataTablesRepository #30

Closed lidaling closed 8 years ago

lidaling commented 8 years ago

Hi, I want to return VOs to client ,how to repalce Entity with VO with DataTablesRepository. Thanks

darrachequesne commented 8 years ago

Please see the converter argument here: DataTablesRepository#findAll(DataTablesInput input, Converter<T, R> converter);

lidaling commented 8 years ago

It works