in a springcloud project if a backend microservice has the following:
@RequestMapping("/test")
pubilc void test(@RequestBody MyPram myParam){
...
}
how can I retrive the "myParam" value in a zuul filter? in other words, since I can have the following code segment in a zuul filter
RequestContext ctx = RequestContext.getCurrentContext();
HttpServletRequest request = ctx.getRequest();
how can I retrive the "myParam" value from a request?