我注意到当我从NuGet将StructMap安装到我的ASP.NET MVC3项目中时,Dave Ebbo的
WebActivator软件包也被添加为依赖项.
WebActivator提供了一个PreApplicationStartMethod属性,并且在安装时添加的样板代码中,它用于在其自己的类中初始化IoC容器和依赖项解析器,而不是在Global.asax的Application_Start方法中执行此操作.
鉴于ASP.NET 4已经拥有自己的System.Web.PreApplicationStartMethodAttribute
,为什么WebActivator必须提供自己的版本,而StructureMap才能使用它?
我猜我不必使用WebActivator的变体?
using System.Web; using System.Web.Mvc; using StructureMap; [assembly: WebActivator.PreApplicationStartMethod( typeof(MyMvcApp.App_Start.StructuremapMvc),"Start")] // or [assembly: PreApplicationStartMethod( typeof(MyMvcApp.App_Start.StructuremapMvc),"Start")] namespace MyMvcApp.App_Start { public static class StructuremapMvc { public static void Start() { var container = (IContainer) IoC.Initialize(); DependencyResolver.SetResolver(new SmDependencyResolver(container)); } } }