servicedelegate.getport 创建的代理可以重用吗?它是线程安全的吗?
我们正在使用 webservice(通过 websphere),为了提高性能,我们相信我们可以缓存由 servicedelegate.getport(..) 创建的代理,因为每次创建代理都是昂贵的。
现在,我们的问题是,线程安全吗?想象一下,我们有 10 个线程同时运行,它们将获取同一个代理,并同时使用它。
谢谢
We are using webservice (through websphere), to improve performance, we believe we can cache proxy created by servicedelegate.getport(..) since creating proxy every time is expensive.
Now, our question is, is it thread safe? Just image, we have 10 threads running at the same time, they will grab the same proxy, and use it at the same time.
Thx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不要让您的应用程序缓存它,只需使用 WebServiceRef 注入它并让容器为您管理它。
Instead of letting your application cache it, just have it injected using WebServiceRef and let the container manage it for you.
端口不是线程安全的。它们保留状态,如 javax.xml.ws.handler.MessageContext。但端口对象以后可以安全地重用!
在调用之前将端口缓存在
LinkedBlockingQueue
中,并在调用之前peek
,然后使用offer
返回。在以下实现中,
port
对象不会从call
代码中泄漏,因此可以安全地重用它:Ports are not thread safe. They keep state, like
javax.xml.ws.handler.MessageContext
. But port object can be safely reused later!Cache ports in
LinkedBlockingQueue
andpeek
before call and then return after withoffer
.In following implementation
port
object doesn't leak out ofcall
code so it is safe to reuse it: