0

问题

由于 GSON (GWT JSON-RPC) 遇到的几个问题,我想切换到 Resty-GWT。下面的例子展示了我的旧设置,下面是我的转移尝试。

数据

这是从我设置的代理发送的 JSON 数据:

{"id": 1, "result": ["Planets", "Stars"], "error": null}

ControlService.java - 我如何拨打电话(使用 GSON)

进行异步调用的类:

import com.google.gwtjsonrpc.common.AsyncCallback;
import com.google.gwtjsonrpc.common.RemoteJsonService;
import com.google.gwtjsonrpc.common.RpcImpl;

@RpcImpl(version=RpcImpl.Version.V2_0,transport=RpcImpl.Transport.HTTP_POST)
public interface ControlService extends RemoteJsonService
{

    public void connectedNames( String [] Names, AsyncCallback<String[]> callback ); //FirstExample

}

创建面板.java

这是实际调用和接收数据的类:

import com.google.gwtjsonrpc.common.AsyncCallback;

public class createPanel implements ChangeHandler{

    public mainPanel(){

        //Some code setting up the panels
        service_ = GWT.create(ControlService.class);
        ((ServiceDefTarget) service_).setServiceEntryPoint("http://localhost:3900/services/ControlProxy.py"); //Directs GWT to the proxy

        service_.connectedNames( new String[0], new AsyncCallback<String[]>() {

            public void onSuccess( String[] result) 
            {   
                    //I now play with the data
            }
            public void onFailure(Throwable why)
            {
                myList_.addItem( "Server error!" );
            }
    });
    }
}

那么我该如何使用RestyGWT呢?

我的尝试:

测试服务.java

import javax.ws.rs.Path;

import org.fusesource.restygwt.client.MethodCallback;
import org.fusesource.restygwt.client.RestService;

@Path("http://localhost:3900/services/ControlProxy.py")
@POST
public interface testService extends RestService {

        public void connectedNames( String [] Names, MethodCallback<String[]> callback );

}

testCreatePanel.java

public class createPanel implements ChangeHandler{

    public mainPanel(){

        //Some code setting up the panels
        service_ = GWT.create(testService.class);
        testService.connectedNames(cbcNames, callback);//how to extract data from this
}
4

1 回答 1

2

我认为您忘记了回调的实现(可能它位于代码中的其他位置,在这种情况下,将其发布在您的问题中会很有用)。

MethodCallback 是一个需要实现的接口(如果你想匿名)

所以你需要有类似的东西

testService.connectedNames(cbcNames, new MethodCallback<String[]>(){

    //onSuccess

    //onFailure
);

现在当你说

这是从我设置的代理发送的 JSON 数据: {"id": 1, "result": ["Planets", "Stars"], "error": null}

您的意思是当您发布某些内容时它是来自服务器的答案,还是您发布到服务器的内容?

在这两种情况下,这个对象都不像 String[]。在您的 restService 中,您声明将 String[] 作为有效负载发送Names,并声明您将在响应返回时检索 String[]。

您可以查看本教程以获得更多帮助:http ://ronanquillevere.github.io/2014/03/16/gwt-rest-app.html

于 2014-03-31T16:43:09.220 回答