@RequestParam 注解使用是bug ,未查明问题原因 也可能是 Pageable 的原因

Posted slamor

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了@RequestParam 注解使用是bug ,未查明问题原因 也可能是 Pageable 的原因相关的知识,希望对你有一定的参考价值。

    @GetMapping
    @ResponseBodypublic Object findAll(@RequestParam(value = "page", required = false, defaultValue = "0") Integer page,
                          @RequestParam(value = "pageSize", required = false, defaultValue = "10") Integer pageSize, String data) {
        Pageable pageable = PageRequest.of(page, pageSize, Sort.Direction.DESC, "id");
        Predicate predicate = getPredicate(data);
        Page<Invite> pageResult = inviteService.findByProperties(pageable, predicate);
        return Response.list(pageResult.getContent(), (int) pageResult.getTotalElements());
    }


page = null != page ? --page : 0; pageSize = null != pageSize ? pageSize : 10; Pageable pageable = PageRequest.of(page, pageSize, Sort.Direction.DESC, "id"); Predicate predicate = getPredicate(data); Page<Invite> pageResult = inviteService.findByProperties(pageable, predicate); List<Invite> list = inviteService.findListByProperties(predicate); System.out.println("list====[]"+list); logger.debug("list====={}",list); return Response.list(pageResult.getContent(), (int) pageResult.getTotalElements())

 

 第一种写法无法会使得Page产生错误 具体原因未知:

技术图片

 正确的方式:一脸懵逼 参数哪里不一样吗?技术图片

 

以上是关于@RequestParam 注解使用是bug ,未查明问题原因 也可能是 Pageable 的原因的主要内容,如果未能解决你的问题,请参考以下文章

@RequestParam 注解的使用

@PathVariable注解和@RequestParam注解的区别

@RequestParam注解的使用

@RequestParam注解参数

SpringMVC的@RequestParam注解(eclipse)

@RequestParam注解