詳細: rpc から無効なオブジェクトのリストを返しているようです。シリアル化できないタイプだと思います..シリアル化する方法を知っている人はいますか? またはいくつかの回避策?
シリアル化できないクラスを取得しました。次の例外が発生しています:
原因: "com.google.gwt.user.client.rpc.SerializationException: Type 'gwt.client.objects.NamedObject' was not included in the set of types which can be serialized by this SerializationPolicy or its Class object could not be loaded. For security purposes, this type will not be serialized.: instance = gwt.client.objects.NamedObject@613bc2a6"
これは、「NamedObject」クラスのソース コードであり、List を返す対象のすべてです。
public class NamedObject<T> implements Serializable {
private String name;
private T object;
public void setNamedObject(String name, T object){
setName(name);
setObject(object);
}
public String getName() {
return name;
}
public Object getObject() {
return object;
}
}