How to get the parameters corresponding to @ RequestBody in Request?

in springcloud
if the backend service has

@RequestMapping("/test")
pubilc void test(@RequestBody MyPram myParam){
    ...
}

in the filter of the zuul gateway, I want to get the value of myParam,

    RequestContext ctx = RequestContext.getCurrentContext();
    HttpServletRequest request = ctx.getRequest();
    

then how do I get the value of myParam through Request?

Jul.19,2022

  

now that you can get the request.
then you can directly request.getParamXXXXX () forget the specific method name

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-7bbea5-26d35.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-7bbea5-26d35.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?