如何在 Spring.NET 中处理 null 请求作用域对象
我在 Spring.NET 中有几个在请求范围内创建的对象。 当实例存在时,这可以正常工作,但有时它们需要为空。 如果我从创建它们的工厂返回 null,我会从 Spring.NET 收到错误,指示它无法包装 null 对象。 我猜测它正在尝试围绕该对象创建代理,但由于它为空而未能这样做。
如何让 Spring.NET 接受工厂方法中的 null 值?
I have a couple of objects in Spring.NET that I have created in the request scope. This works fine when the instance exists but sometimes they need to be null. If I return null from the factory that creates them I get an error from Spring.NET indicating that it cannot wrap a null object. I gather it is trying to create a proxy around the object and failing to do so since it is null.
How do I get Spring.NET to accept a null from a factory method?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道如何让 Spring.NET 接受工厂方法中的 null,但也许您可以使用 NullObject Pattern 在你的工厂方法中,这样你的工厂就会返回一个不执行任何操作的对象,而不是一个空引用。
I dont know how to get Spring.NET to accept a null from a factory method but maybe you can make use of the NullObject Pattern in your factory method, so that your factory returns an Object which does nothing instead of a null reference.