5
Spring RestTemplateリクエストに「Accept:」ヘッダーを設定する方法は?
Accept:Springを使用して作成するリクエストでの値を設定したいRestTemplate。 これが私のSpringリクエスト処理コードです @RequestMapping( value= "/uom_matrix_save_or_edit", method = RequestMethod.POST, produces="application/json" ) public @ResponseBody ModelMap uomMatrixSaveOrEdit( ModelMap model, @RequestParam("parentId") String parentId ){ model.addAttribute("attributeValues",parentId); return model; } ここに私のJava RESTクライアントがあります: public void post(){ MultiValueMap<String, String> params = new LinkedMultiValueMap<String, String>(); params.add("parentId", "parentId"); String result = rest.postForObject( url, params, String.class) ; System.out.println(result); } これは私にとってはうまくいきます。サーバー側からJSON文字列を取得します。 私の質問は:私は指定することができますどのようにAccept:ヘッダ(例えばapplication/json、application/xml(例えば、...)とリクエストメソッドGET、POST、...)私はRestTemplateを使うのか?
193
spring
rest
resttemplate