toplink 客户端会话与服务器会话
我可以直接在服务器会话上创建工作单元而不是创建多个客户端会话吗?由于我的应用程序在多线程环境中运行,因此我无法在某些不同的客户端会话中获取更新的实体,因此我的应用程序时不时会失败..请帮助我。
can i directly create unit of work on server session instead of creating multiple client session. As my application runs in multi threaded environment, so i am unable to get updated entity in some different client session so my application fails every now and then.. plz help me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,您可以直接从 ServerSession 获取 UOW。但您可能需要更新缓存/锁定/刷新策略,因为 ClientSession 没有任何缓存。仅UOW和ServerSession缓存数据。
如果您还有任何其他问题,您应该在 EclipseLink 用户邮件列表上发帖。
——戈登·约克
Yes, you can acquire a UOW directly from a ServerSession. But you may need to update your caching/locking/refreshing policies as the ClientSession does not have any caching. Only the UOW and the ServerSession cache data.
If you have any more questions you should post on the EclipseLink User mailing list.
--Gordon Yorke