我正在尝试使用StructureMap为我的MVC项目设置setter / property注入,但我似乎无法设置属性。我很清楚构造函数注入是推荐的做法,但我有严格的要求,要求我们使用setter注入,所以请保留评论试图告诉我。
我有正常的样板设置代码,例如我的Global.asax
中的以下内容ControllerBuilder.Current.SetControllerFactory(new TestControllerFactory());
ObjectFactory.Initialize(x => {
x.For<IPaymentService>().Use<PaymentService>();
x.ForConcreteType<HomeController>().Configure.Setter<IPaymentService>(y => y.PaymentService).IsTheDefault();
x.SetAllProperties(y =>
{
y.OfType<IPaymentService>();
});
});
我的TestControllerFactory如下所示:
public class TestControllerFactory:System.Web.Mvc.DefaultControllerFactory
{
protected IController GetControllerInstance(Type controllerType)
{
if (controllerType == null)
throw new ArgumentNullException("controllerType");
return ObjectFactory.GetInstance(controllerType) as IController ;
}
}
我有以下服务/实现类对
public interface IPaymentService
{
}
public class PaymentService:IPaymentService
{
}
最后,我的控制器将拥有需要将具体支付服务实现注入其中的属性:
public class HomeController:Controller { public IPaymentService Service {get; set;}
public ActionResult Index(){
var test = Service... //Service is Null
}
}
如上所示,我调试时该属性保持为null。
此外,我尝试使用[SetterProperty]只是为了查看它是否有效(我无意将控制器与这些属性耦合),它仍然没有用。
我不确定我是否需要做其他事情,或者问题可能是什么。我一直在使用StructureMap的构造函数注入很长一段时间。
答案 0 :(得分:3)
尝试删除此行:
x.ForConcreteType<HomeController>().Configure
.Setter<IPaymentService>(y => y.PaymentService).IsTheDefault();
没有必要。
给出以下控制器:
public class HomeController : Controller
{
public IMsgService Service { get; set; }
public ActionResult Index()
{
return Content(Service.GetMessage());
}
}
这是配置StructureMap以设置属性所需的全部内容:
ObjectFactory.Initialize(cfg =>
{
cfg.For<IMsgService>().Use<MyMsgService>();
cfg.SetAllProperties(prop =>
{
prop.OfType<IMsgService>();
});
});
ControllerBuilder.Current.SetControllerFactory(new StructureMapControllerFactory());