Spring .NET、WCF 和单例
将 Spring .NET 与 WCF 集成以获取单例语义时,似乎存在一些问题。我在网上查了一下,但找不到任何结论性的东西。
是否有人将 Spring.Net 与 WCF 服务一起使用,其中实例上下文模式设置为 Single,并发模式设置为 multiple,并且 spring 配置中的对象定义标记为单例?
It appears there's some issue integrating Spring .NET with WCF for getting singleton semantics. I looked around a bit on the net but I couldn't find anything conclusive.
Has anybody used Spring.Net with a WCF service where the instance context mode has been set to Single, Concurrency Mode set to multiple and the object definition in spring configuration marked as a singleton?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查 Spring 文档:
http://www.springframework.net/doc-latest/reference/html /wcf.html
“该对象必须声明为“原型”对象,即不是单例,以便与 WCF 实例正确交互。”
华泰
Check the Spring documentation :
http://www.springframework.net/doc-latest/reference/html/wcf.html
"The object must be declared as a 'prototype' object, i.e. not a singleton, in order to interact correctly with WCF instancing."
HTH