如何在 Spring.Net 中配置 NULL 对象
在我正在工作的特定项目中,有一个空日志服务对象是合适的。由于这是在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以注入 null 对象:
要创建 null 对象,您必须实现 IFactoryObject 并返回 null。
http://www.springframework.net/doc -latest/reference/html/objects.html#objects-factory-extension
You can inject a null 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