温莎 - 从容器中拉出瞬态物体
如何从容器中拉出瞬态物体?我是否必须在容器中注册它们并注入需要类的构造函数?将所有内容注入构造函数中感觉不太好。也只是为了一个类,我不想创建一个TypedFactory
并将工厂注入需要的类。
我想到的另一个想法是根据需要“新”起来。但我也在我的Logger
所有类中注入一个组件(通过属性)。因此,如果我新建它们,我将不得不手动实例化Logger
这些类。如何继续为我的所有课程使用容器?
记录器注入:我的大多数类都Logger
定义了属性,除非存在继承链(在这种情况下,只有基类具有此属性,并且所有派生类都使用该属性)。当这些通过Windsor容器实例化时,它们会将我的实现ILogger
注入其中。
//Install QueueMonitor as SingletonContainer.Register(Component.For<QueueMonitor>().LifestyleSingleton());//Install DataProcessor as TrnsientContainer.Register(Component.For<DataProcessor>().LifestyleTransient());Container.Register(Component.For<Data>().LifestyleScoped());public class QueueMonitor{ private dataProcessor; public ILogger Logger { get; set; } public void OnDataReceived(Data data) { //pull the dataProcessor from factory dataProcessor.ProcessData(data); }}public class DataProcessor{ public ILogger Logger { get; set; } public Record[] ProcessData(Data data) { //Data can have multiple Records //Loop through the data and create new set of Records //Is this the correct way to create new records? //How do I use container here and avoid "new" Record record = new Record(/*using the data */); ... //return a list of Records }}public class Record{ public ILogger Logger { get; set; } private _recordNumber; private _recordOwner; public string GetDescription() { Logger.LogDebug("log something"); // return the custom description }}
问题:
如何在Record
不使用“new”的情况下创建新对象?
QueueMonitor
是Singleton
,而是Data
“Scoped”。我怎样才能注入Data
到OnDataReceived()
方法?