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);
}