Open aaz360 opened 7 years ago
Hi How are you using this repository implementation in service class like jpaSpecificationExecutorWithProjection.findAll(***)
in the Spec filed what we have to write
and I have to give List instead of page what should I need to do
@aaz360 Thank for clean up Can you make a pull request. So you name will be in a contributor of this project.
@maroom1 If you want findAll that return just List you should extends both JpaRepository and JpaSpecificationExecutorWithProjection
public interface BirthDescRepository extends JpaRepository<BirthDesc, Long>, JpaSpecificationExecutorWithProjection<BirthDesc> {
I've clean-up some warnings, here's the code if you'd like to use my changes