java.lang.IllegalArgumentException:Either use @Param on all parameters except Pageable and Sort typed once, or none at all
Caused by: java.lang.IllegalArgumentException: Either use Param annotation on all parameters except Pageable and Sort typed once, or none at all! states that all the parameters should have Param annotation your first argument is not having it
This can also happen if you use PageRequest
in the repository as well.
you should use Pageable
with below import,
import org.springframework.data.domain.Pageable;