Hibernate,Gilead和GWT

时间:2010-12-08 18:08:04

标签: gwt gilead

我遇到了GWT和Gilead / Hibernate的一些问题

我根据教程完成了我的代码,但是失败了 com.google.gwt.user.client.rpc.SerializationException:类型'ru.atamur.entity.UserEntity_gilead_15'未包含在可由此SerializationPolicy序列化的类型集中,或者无法加载其Class对象。出于安全考虑,此类型不会被序列化:instance = ru.atamur.entity.UserEntity_gilead_15@133fa82

查看源代码我可以看到Gilead将我的UserEntity转换为GileadRPCHelper.parseReturnValue(returnValue,_beanManager)中的UserEntity_gilead_15

我可以看到这是故意由ProxyClassMapper完成的(我正在尝试使用代理模式),所以我想知道Gilead希望告诉GWT Serilization机制它引入的这个新代理类...

1 个答案:

答案 0 :(得分:0)

你能分享你的代码吗?

之前我想说当你的类没有实现你将它发送到服务器的 isSerializable 接口时,会抛出 SerializationException

您发送到服务器的每个类都应实现 isSerializable 接口