问题

当前,由于GSON带来的种种烦恼,我正在用Resty-GWT代替GSON进行JSON-RPC调用。它完全按照我想要的方式工作,但是除了String之外,我不知道该如何发送消息:

String names_ = "{\"jsonrpc\":\"2.0\",\"method\":\"RegisterValues\",\"params\":[[\"FirstValue\"],\"id\":2}";


我想以一种更聪明的方式做到这一点,所以我不必写出所有这些值。不过最重要的是,我想要一种简单的方法来插入这些参数。只是在我的请求有效负载中轻松声明这些属性的某种方法。

当前方法

String通过以下调用发送:

testService.RegisterValues(names_, new MethodCallback<testService.Response>(){

            @Override
            public void onFailure(Method method, Throwable exception) {
                // TODO Auto-generated method stub
                Window.alert(exception.getMessage().toString());
            }

            @Override
            public void onSuccess(Method method, testService.Response response) {
                // TODO Auto-generated method stub
                Window.alert("Hello" + response.getResult().toString());


            }
        });


testService类在这里找到:

import javax.ws.rs.POST;
import javax.ws.rs.Produces;

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

public interface testService extends RestService {

@Produces("application/json")
        @POST
        public void RegisterValues(String names_, MethodCallback<Response> callback );
}


然后将回调发送到此响应类,在这里我可以轻松地反序列化数据,然后进行提取(尽管这在这里并不重要):

public class Response {

        private int id;
        private Map<String, Map<String, Integer>> result;
        private String error;

        public int getId() {
            return id;
        }

        public void setId(int id) {
            this.id = id;
        }
                //...etc.

最佳答案

首先,您的json似乎不正确,您有一个未关闭的方括号([)?

然后,您必须执行与对象Response完全相同的操作。您需要创建一个代表您的姓名的对象-Resty会为您序列化它。

就像是

public class Params {
  String jsonrpc;
  String method;
  String[] params;
  String id;
}

09-27 12:19