我注意到当我从NuGet将StructMap安装到我的ASP.NET MVC3项目中时,Dave Ebbo的WebActivator包也被添加为依赖项。
WebActivator提供PreApplicationStartMethod
属性,在安装时添加的样板代码中,它用于在其自己的类中初始化IoC容器和依赖项解析器,而不是在Global.asax
内执行此操作s Application_Start
方法。
鉴于ASP.NET 4已经拥有自己的System.Web.PreApplicationStartMethodAttribute
,为什么WebActivator必须提供自己的版本并让StructureMap使用它?
我猜我不 使用WebActivator的变体?
为Darin添加了代码:
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));
}
}
}
答案 0 :(得分:6)
ASP.NET MVC 3中DI容器的NuGet包通常更喜欢使用WebActivator来避免弄乱Application_Start
中可能存在的任何现有代码。 Ninject使用完全相同的方法。
您的应用中可以有多个WebActivator.PreApplicationStartMethod
属性,之前属于.NET 4.5一个System.Web.PreApplicationStartMethodAttribute
。