如何在 Spring.Net 中配置 NULL 对象

发布于 2024-11-07 04:24:01 字数 277 浏览 2 评论 0原文

在我正在工作的特定项目中,有一个空日志服务对象是合适的。由于这是在 Spring.Net 中配置的,因此如何将 spring.net 对象配置为 null。这就是我想做的。是否可以?

<objects xmlns="http://www.springframework.net">
  <!-- Messages -->

  <object id ="LogService">
    <null />
  </object>

In the particular project in which I'm working it is appropriate to to have a null log service object. Since this is configured in Spring.Net How do I configure my spring.net object to be null. This is what I'd like to do. Is it possible?

<objects xmlns="http://www.springframework.net">
  <!-- Messages -->

  <object id ="LogService">
    <null />
  </object>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

鹤仙姿 2024-11-14 04:24:01

您可以注入 null 对象:

<object id="MyObject">
  <property name="LogServer">
    <null/>
  </property>
</object>

要创建 null 对象,您必须实现 IFactoryObject 并返回 null。
http://www.springframework.net/doc -latest/reference/html/objects.html#objects-factory-extension

  • 布鲁诺

You can inject a null object :

<object id="MyObject">
  <property name="LogServer">
    <null/>
  </property>
</object>

To create a null object, you have to implement IFactoryObject and return null.
http://www.springframework.net/doc-latest/reference/html/objects.html#objects-factory-extension

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