我想用春天的休息模板做一個發佈請求。我需要返回狀態碼。這是我的方法。Android的春天休息模板
RestTemplate restTemplate = new RestTemplate();
MultiValueMap mvm = new LinkedMultiValueMap();
mvm.add("login", "100"); // and some more paramters
String result = restTemplate.postForObject("http://localhost:8080/security_check", mvm, String.class);
但這種方法不適合我的工作。它產生一個錯誤,說沒有找到合適的消息轉換器。 我需要知道我可以使用resttemplate來管理我的會話。我需要從Android客戶端管理會話。
如果有人遇到android resttemplate post方法和會話管理請幫幫我。任何幫助將不勝感激。
在此先感謝。