@GetMapping(value = "/queryPaymentInfo")
Result<List<PolicyPaymentInfoDTO>> queryPaymentInfo(@RequestParam("policyId") List<String> policyId,
@RequestParam("tenantId") Long tenantId);
当@RequestParam 的参数为 List、Map、Set等类型时,会有坑点。
因为@RequestParam的参数实际上是在url后面拼接的。
① 前端调用: 如果前端传值很多,则url长度会受到限制。
② 其他服务调用该接口: Feign、Nginx也会对url的长度做限制