コンテンツタイプ 'application / x-www-form-urlencoded; charset = UTF-8'は@RequestBodyMultiValueMapではサポートされていません
Spring @ Controllerでx-www-form-urlencodedの問題に対する回答に基づく 私は以下の@Controllerメソッドを書きました @RequestMapping(value = "/{email}/authenticate", method = RequestMethod.POST , produces = {"application/json", "application/xml"} , consumes = {"application/x-www-form-urlencoded"} ) public @ResponseBody Representation authenticate(@PathVariable("email") String anEmailAddress, @RequestBody MultiValueMap paramMap) throws Exception { if(paramMap == null || paramMap.get("password") == null) { throw new IllegalArgumentException("Password not provided"); } } 以下のエラーで失敗するリクエスト { "timestamp": …