我调试通过,看起来像艾伦提到的问题。
我发现可以帮助解决问题的方法:
创建自己的控制器,注入您的仓库和可选的投影工厂(如果需要投影)。实现get方法以将调用委托给您的存储库
@RestController @RequestMapping("/people") public class PeopleController { @Autowired PersonRepository repository; //@Autowired //PagedResourcesAssembler<MyDTO> resourceAssembler; @GetMapping("/by-address/{addressId}") public Page<Person> getByAddress(@PathVariable("addressId") Long addressId, Pageable page) { // spring doesn't spoil your sort here ... Page<Person> page = repository.findByAddress_Id(addressId, page) // optionally, apply projection // to return DTO/specifically loaded Entity objects ... // return type would be then PagedResources<Resource<MyDTO>> // return resourceAssembler.toResource(page.map(...)) return page; }}
这对我来说适用于2.6.8.RELEASE; 这个问题似乎存在于所有版本中。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)