Jersey、RESTful、Restletを使用してみましたが、GWTでは何も機能しません。Tomcat に Web サービスをデプロイし、App Engine に GWT アプリケーションをデプロイしたいと考えています。
質問する
2854 次
2 に答える
1
ご支援いただきありがとうございます。. 私は私の質問に対する答えを得ました。Jersey を使用して Restfull Web サービスを作成し、gwt アプリ エンジン アプリケーションで次のコードを使用して呼び出しました。
ClientConfig config = new DefaultClientConfig();
Client client = Client.create(config);
WebResource service = client.resource(UriBuilder.fromUri("http://localhost:8080/de.vogella.jersey.first").build());
String obj=service.path("rest").path("bye").accept(MediaType.TEXT_PLAIN).get(String.class);
Web アプリケーション コードは次のとおりです。package de.vogella.jersey.first;
import javax.ws.rs.*;
@Path("/bye")
public class Hello {
// This method is called if TEXT_PLAIN is request
@GET
@Produces(MediaType.TEXT_PLAIN)
public String sayPlainTextHello() {
return "Hello it worked";
}
Web アプリケーション コードについては、次のリンクを参照してください: http://www.vogella.com/articles/REST/article.html
于 2012-11-09T04:27:14.720 に答える
1
RPC と RequestBuilder を使用できます。
https://developers.google.com/web-toolkit/doc/latest/DevGuideServerCommunication
RESTful サービスを使用することもできます。
于 2012-11-08T07:06:33.333 に答える