I\'m trying to get a page of a partial entity (NetworkSimple) using the new feature of spring data, projections
I\'ve checked the documentation and if I request only:
You can use interface projection with Pageable like this :
Page findPagedProjectedBy(Pageable pageable);
with some parameter :
Page findPagedProjectedByName(String name, Pageable pageable);