英文原文:https://projects.spring.io/spring-android/
目录
Spring for Android是Spring Framework的扩展,旨在简化原生Android应用程序的开发。
Spring for Android是一个框架,旨在提供用于Android应用程序的Spring系列项目的组件。 像所有Spring项目一样,Spring for Android的真正强大之处在于它可以轻松扩展。
在项目中使用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");