我只是试图编译我的客户端代码并遇到这个
[ERROR] [com.mycompany.project.App] - In order to produce smaller client-side code, 'Object' is not allowed; please use a more specific type (reached via com.mycompany.project.client.bean.Test<?>)
……一种例外;
我试图发送到服务器的 bean 是这样的
public final class Test<A> implements IsSerializable{
private A a;
public A getA() {
return a;
}
public void setA(A a) {
this.a= a;
}
}
正如我所看到的,编译器会发出<?>
泛型非特定类型的噪音:S 所以我一直在考虑如何走动它,或者仍然有办法让它工作,因为我对RPC 抽象支持非常感兴趣? 我在这里非常需要你的建议。
谢谢
PS GWT 2.3