依赖注入静态类

时间:2011-10-03 08:52:05

标签: c#-4.0 spring.net static-class

  

可能重复:
  Configure Property of a static class via spring .net

我想使用spring .net为静态类中的属性注入值。 代码段:

Public static Abc
{
Public static IInterface IInterface{get;set;}
}

这里我想通过spring .net config将IInterface值注入到Abc staic类中。

1 个答案:

答案 0 :(得分:2)

我怀疑你能否做到。

静态类在依赖注入方面并不能很好地工作。

最好将该类作为普通类创建,并将其设置为容器中的单例。我很确定spring.net会允许这个..