ServletプロジェクトでRestTemplateを使用しようとしています。Restful Webサービスに送信する値がいくつかあります。ServletでSpring RestTemplateを使用するには?
RestTemplate restTemplate = new RestTemplate();
String url = "http://localhost:8080/spring-rest/data/putdata{id}{name}";
Map<String, String> map = new HashMap<String, String>();
map.put("id", "100");
map.put("name", "Ram");
Address address = new Address("Dhananjaypur", "Varanasi","UP");
restTemplate.put(url, address, map);
私は春-ウェブ-4.39-RELEASE.jarを使用していますjarファイルのバージョン:私は以下のコードを試してみました。
java.lang.NoClassDefFoundError: org.springframework.web.client.RestTemplate
私は既にクラスパスにjarファイルを追加しました。しかし、私はアプリケーションをデバッグしようとしました。誰も私にこれを助けることができますか?
https://jira.spring.io/browse/ANDROID-78 - 2012から – Zoe