Spring系列學習之Spring Android
阿新 • • 發佈:2018-12-23
英文原文:https://projects.spring.io/spring-android/
目錄
Spring for Android是Spring Framework的擴充套件,旨在簡化原生Android應用程式的開發。
Spring for Android是一個框架,旨在提供用於Android應用程式的Spring系列專案的元件。 像所有Spring專案一樣,Spring for Android的真正強大之處在於它可以輕鬆擴充套件。
特性
- 適用於Android的Rest客戶端
- Auth支援訪問安全API
快速開始
下載
在專案中使用spring-android的推薦方法是使用依賴管理系統 - 下面的程式碼片段可以複製並貼上到您的構建中。 需要幫忙? 請參閱我們的Maven和Gradle構建入門指南。
用法
以下示例說明了如何搜尋Google:
// The connection URL String url = "https://ajax.googleapis.com/ajax/" + "services/search/web?v=1.0&q={query}"; // Create a new RestTemplate instance RestTemplate restTemplate = new RestTemplate(); // Add the String message converter restTemplate.getMessageConverters().add(new StringHttpMessageConverter()); // Make the HTTP GET request, marshaling the response to a String String result = restTemplate.getForObject(url, String.class, "Android");
示例