I have a controller action I think should be an HTTP PUT, but Spring is complaining when I try and use @RequestParam in the controller action. Is request parameters not allo
I followed the recommendation in the comments and changed @RequestParam to @RequestBody and it just worked (my parameter is a String).
I agree this is a bug in Spring because the exact same code that fails in my production environment (when using @RequestParam) works fine in localhost.