core icon indicating copy to clipboard operation
core copied to clipboard

Rest annotations: Order @RequestParamter arbitrarily

Open sleighsoft opened this issue 9 years ago • 0 comments

The following method results in a 'General Server error': getFromPath(@RequestParam(value="var", required = false) String term_id, @RequestParam("anothervar") String anothervar)

This method does not result in an error: getFromPath(@RequestParam("var") String term_id, @RequestParam(value = "anothervar", required = false) String anothervar)

Is it possible to allow arbitrary ordering of request parameters?

sleighsoft avatar Feb 22 '16 09:02 sleighsoft