Java REST client API for Android [已关闭]
2022-09-01 13:23:34
我的服务器应用程序使用 JAX-RS(泽西岛实现)公开了 RESTful Web 服务。调用此服务的最佳方式是什么(除了使用Apache HttpClient)?我想知道来自泽西岛,Restlet,RESTeasy和其他框架的REST客户端API是否适用于Android。
谢谢,西奥
我的服务器应用程序使用 JAX-RS(泽西岛实现)公开了 RESTful Web 服务。调用此服务的最佳方式是什么(除了使用Apache HttpClient)?我想知道来自泽西岛,Restlet,RESTeasy和其他框架的REST客户端API是否适用于Android。
谢谢,西奥
Resteasy-mobile是一个完美的解决方案。
它基本上是完全成熟的不安(具有客户端框架),但使用Apache HTTP Client而不是HttpURLConnection(在Android上不存在)
以下是有关用法的更多信息(http://docs.jboss.org/resteasy/docs/2.3.1.GA//userguide/html_single/index.html#RESTEasy_Client_Framework)
这是为专家准备的
<dependency>
<groupId>org.jboss.resteasy.mobile</groupId>
<artifactId>resteasy-mobile</artifactId>
<version>1.0.0</version>
</dependency>
安卓端的一些示例代码
public class RestServices {
static RegisterSVC registerSVC;
static PushSVC pushSVC;
static TrackerSVC trackerSVC;
RestServices() {
RegisterBuiltin.register(ResteasyProviderFactory.getInstance());
}
public static RegisterSVC getRegisterSVC() {
return ProxyFactory.create(RegisterSVC.class,"http://143.248.194.236:8080/notification");
}
public static PushSVC getPushSVC() {
return ProxyFactory.create(PushSVC.class,"http://143.248.194.236:8080/notification");
}
public static TrackerSVC getTrackerSVC() {
return ProxyFactory.create(TrackerSVC.class,"http://143.248.194.236:8080/notification");
}
}
Android 和服务器端的 JAX-RS 服务定义 (PushSVC.java)
@Path("/mobile")
public interface PushSVC {
/*
Sample
curl --data '{"collapseKey":"asdf","contentList":{"aaaa":"you","ssss":"you2"}}' -X POST -H 'Content-type:application/json' -v http://localhost:8080/notification/mobile/11111/send
*/
@POST
@Path("/{uuid}/send")
@Consumes(MediaType.APPLICATION_JSON)
String sendPush( MessageVO message, @PathParam("uuid") String uuid);
}
模型消息 VO 定义
public class MessageVO {
String collapseKey;
HashMap<String, String> contentList;
public MessageVO() {
}
public MessageVO(String collapseKey) {
this.collapseKey = collapseKey;
contentList = new HashMap<String, String>();
}
public void put(String key, String value)
{
this.contentList.put(key,value);
}
public String getCollapseKey() {
return collapseKey;
}
public HashMap<String, String> getContentList() {
return contentList;
}
}
这是在安卓上调用的方法
public class Broadcast extends AsyncTask<Context,Void,Void>
{
@Override
protected Void doInBackground(Context... contexts) {
MessageVO message = new MessageVO("0");
message.put("tickerText","Ticker ne` :D");
message.put("contentTitle","Title ne` :D");
message.put("contentText","Content ne` :D");
RestServices.getPushSVC().sendPush(message,TrackInstallation.id(contexts[0]).toString());
return null;
}
}
这很简单,所有编写的代码都是可重用的,样板代码几乎不存在。
希望这对大家有所帮助。