如何在 Spring.NET 中处理 null 请求作用域对象

发布于 2024-07-24 04:20:22 字数 199 浏览 10 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

jJeQQOZ5 2024-07-31 04:20:22

我不知道如何让 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文