通过dispatch发送java.lang.Class的最佳方法?

时间:2012-06-13 23:28:39

标签: gwt gwt-platform java.lang.class

这里的设置:我使用GWT 2.4和gwt-platform 0.7。我有一堆包含键值对的类(目前是int-> String)。它们只是不同的类,因为它们通过JPA保存到数据库中的不同表中。

现在我想要一个(!)方法从服务器获取这些数据。

我首先尝试向服务器发送我想要使用ArrayList<Class<?>>获取的类。并回答HashMap<Class<?>, HashMap<Integer, String>>。但GWT不允许序列化Class<?>。通过这种方式,我可以获得所有数据库条目,并使用正确的类(非常重要)显示它们。

现在我正在寻找另一种方法来让它工作而不必编写很多代码。

第一个新想法是在HashMap<String, Class<?>>文件夹中的某个位置放置shared,然后通过网络传输字符串。因此,客户端和服务器必须通过HashMap中的String查找类来创建新对象。

还有其他好的解决方案吗?

谢谢。

1 个答案:

答案 0 :(得分:0)

public Enum ClassType {
  A, B, C
}

public class AType {
  HashMap<Integer, String> myHashMap;
  ClassType getClassType() {
      return ClassType.A;
  }
}

public interface TransferableHashMap extends IsSerializable {
   ClassType getClassType();
}

public interface transferService extends RemoteService {
    HashSet<TransferableHashMap> getMaps(HashSet<ClassType> request);
}


//somewhere on the client
final Set<AType> as = new Set<AType>();
final Set<BType> bs = new Set<BType>();
final Set<CType> cs = new Set<CType>();

Set<ClassType> request = new HashSet<ClassType>();
request.add(ClassType.A);
request.add(ClassType.B);
request.add(ClassType.C);

transferService.getMaps(request, 
  new AsyncCallback<HashSet<TransferableHashMap>>(){

  @Override
  public void onSuccess(HashSet<TransferableHashMap>> result) {
      for (TransferableHashMap entry : result) {
        if(entry instanceof Atype) as.add((AType)entry);
        else if(entry instanceof Btype) bs.add((BType)entry);
        else if(entry instanceof Ctype) cs.add((CType)entry);
        else throw new SerializationException();
        }
    }
  });

我就是这样做的。