一.问题描述 使用Springboot JPA 做分页查询,报错Required String parameter 'xx' is not present,后端未接受到请求 二.解决方案: 使用的请求方法是GetMapping,这时候传不了参数,需要改为PostMapping才会有效 错误源码: 注意注解:@GetMapping package com.easylab.rentshop.controller; import com.easylab.rentshop.base.BaseResour…