GWT 的 RequestFactory 中 getVersion() 的用途是什么?
GWT 的 RequestFactory
要求我在所有实体对象中实现 getVersion()
方法。我只是让它们全部返回 0
并标记为 @Transient
并且一切正常。
为什么我需要它?真烦人。
GWT's RequestFactory
requires that I implement a getVersion()
method in all my entity objects. I just have them all returning 0
and marked as @Transient
and everything works fine.
Why do I need it? It's annoying as hell.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
摘自:http://code.google.com/intl/ pl/webtoolkit/doc/latest/DevGuideRequestFactory.html
因此,您的方法每次更改时都应该返回不同的版本控制值。如果您不需要请求工厂实体传输系统,请考虑使用 ValueProxy 而不是 EntityProxy。
Taken from: http://code.google.com/intl/pl/webtoolkit/doc/latest/DevGuideRequestFactory.html
So your method should return versioning value diffrent each time when it changes. If you don't need Request Factory entity transport system consider to use ValueProxy instead of EntityProxy.