I\'m working the Spring Data Commons v2+ snapshot, and I see that the constructors for a PageRequest have been deprecated. This appears to have occurred betwee
PageRequest
You can use the following solution to solve your problem:
Page users=userService.findByUserType(id,PageRequest.of(1, 3));