Hy,
I have the next controller method in Spring:
 @RequestMapping(value="indicadores/{entUsuario}/{codUsuario}/{idCliente}",    method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) 
@ResponseBody
public IndicadoresBean getIndicadoresPlanBasicoBean(   
        @RequestBody InvestmentProposalGroupingResponse investmentProposalGroupingBean,
        IndicadoresPlanBasicoRequest request,           
        BindingResult validationResult,
        HttpServletResponse response) {......... }
But when I send a request I get :
"Required request body content is missing: org.springframework.web.method.HandlerMethod$HandlerMethodParameter".
- If I change the verb to POST it works but I need it works with GET
- I need to fill in the request body json in the parameter investmentProposalGroupingBean and uri parameters in parameter request. Is possible?
Thanks
