我想在带有ValueProxy参数的服务上调用一个方法 - 如果我执行personProxy.setName(“test”)然后再执行request.callFn(personProxy).fire(),则不会将name属性传递给服务器
我应该在设置名称之前做一个request.edit(personProxy)吗?
这是我正在使用的实现:
//somewhere in MyActivity.java ...
PersonProxy cp = requestFactory.myRequest().create(PersonProxy.class);
cp.setName("John Doe");
requestFactory.myRequest().doSomething(cp,"extra_param_value").fire(new Receiver<List<PersonProxy>>() {
@Override
public void onSuccess(List<PersonProxy> response) {
//response from server...
}
});
//------------------------
public interface MyRequestFactory extends RequestFactory {
MyRequest myRequest();
}
//------------------------
@ServiceName(value="com.server.MyService", locator="com.server.MyServiceLocator")
public interface MyRequest extends RequestContext {
public Request<Integer> doSomething(PersonProxy param, String extraParam);
}
//------------------------
public class MyServiceLocator implements ServiceLocator {
public Object getInstance(Class<?> clazz) {
return new MyService();
}
}
//------------------------
public class MyService {
public Integer doSomething(Person param, String extraParam) {
System.out.println("person.name="+param.getName()); ---> prints NULL!!! why?
return 0;
}
}
//------------------------
@ProxyForName(value="com.server.Person")
public interface PersonProxy extends ValueProxy {
String getName();
void setName(String name);
}
//-----------------------
public class Person {
public Person() {
super();
}
protected String name;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
感谢。
答案 0 :(得分:6)
PersonProxy
由RequestContext
的一个实例创建,并在另一个实例中使用。事实证明AbstractRequestContext.retainArg()
中存在一个错误,它应该抛出一个异常来告诉你API误用。可编辑代理不应该在不同的RequestContext
实例之间可用。
TreeRequest ctx = factory.treeRequest();
PersonProxy person = ctx.create(PersonProxy.class);
person.setName("John Doe");
ctx.doSomething(person, "more stuff");
正如在IRC上讨论的那样,当试图诊断数据的去向(或不是)时,可以打开-Dgwt.rpc.dumpPayload=true
JVM标志。