I am trying to find any info regarding the following issue: I have a JPA repository which was exposed to REST service with Spring Data Rest project:
Page<Business> findByUser(@Param("user") User user, Pageable pageable);
where the user
parameter is the entity.
Now when I try to call this REST method from client (with RestTemplate or Traverson) I can't understand how should I pass this param...
Is it possible to implement it without making custom controller?
Thank you in advance