pramoth / specification-with-projection

Support projections with JpaSpecificationExecutor.findAll(Specification,Pageable) for Spring Data JPA
MIT License
164 stars 56 forks source link

add a new findAll which takes only the Specification and return a List #16

Open sic-sic opened 5 years ago

sic-sic commented 5 years ago

I want to be able to return a List of my entity, So I think a method like the following one must be added.

     @NoRepositoryBean
     public interface JpaSpecificationExecutorWithProjection<T> {
         List<T> findAll(Specification<T> spec, Class<R> projectionClass);
     }
gollapudi2009 commented 4 years ago

Is this feature going to be merged soon..?

v-ladynev commented 2 years ago

@sic-sic Are you going to create a PR to this repo?