我正在将HashMap<String, Object>
传递给服务器。 STRING包含参数名称,OBJECT是字符串数组。我收到以下异常。
我正在使用GWT(2.5)和hibernate-core-4.2.9 final。
处理此调用时抛出了IncompatibleRemoteServiceException。 com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException:java.lang.ClassNotFoundException:metric1
我将以下参数传递给服务
UIParam<String, Object> param = new UIParam<String, Object>();
param.put("metric", new String[]{"metric1"});
param.put("attribute", new String[]{"attribute1"});
service.getData(param, callback);
请帮助!!
答案 0 :(得分:0)
如果我没错,这是由于使用了Object,它不可序列化,因此GWT无法找到匹配的服务