结构图 asp .net mvc 注册
我在项目中使用 Structuremap 和 Asp .Net MVC。目前,我正在 MVC 层中为其下面的所有内容(服务、数据等)注册依赖解析。但是,我想知道如何通过仅注…
如何使用 Unity 填充设置?
我的 web.config 文件中有以下 appSettings 键值: 我有以下类: public class SomeSettings : IConfigurationSettings { public string Received { g…
在主项目之外使用公共服务定位器
我最近从 StructureMap 跳到了 Ninject。一切都很顺利,直到我意识到 Ninject 没有 StructureMap 的 ObjectFactory(服务定位器)版本。 我发现 Commo…
我应该使用哪个 PreApplicationStartMethod?
我注意到,当我将 NuGet 中的 StructureMap 安装到 ASP.NET MVC3 项目中时,Dave Ebbo 的 WebActivator 包也被安装添加为依赖项。 WebActivator 提供…
如何在调用 IControllerFactory.GetControllerInstance() 之前执行自定义代码?
我需要在调用 IControllerFactory.GetControllerInstance() 之前执行一些自定义代码。 我已经考虑过使用 HtppApplication.BeginRequest 事件,但这将…
51Degrees.mobi 日志记录会减慢 ASP.NET MVC 的速度
51Degrees.mobi.config 中的以下行为我的 ASP.NET MVC 4 项目的控制器操作添加了 2-3 秒的加载时间: ...
StructureMap - 检查某个类/接口的实例是否已创建
我需要检查结构图是否已创建某个接口的实例。我尝试过 ObjectFactory.GetInstance() 但这会在调用时创建 T 的新实例,并且 T 的具体实例不存在。我只…
如何从找到的注册表扫描外部排除某个类型?
在测试中,我想添加一个注册表,然后排除我知道从注册表中的扫描中找到的类型。这是设置。 ObjectFactory.Configure(x => { x.AddRegistry(); x.Scan(…
StructureMap 死了吗?
Closed. This question is off-topic. It is not currently accepting answers. 想要改进此问题吗?更新问题,使其关于- Stack Overflow 的主题。 11…
StructureMap 异常代码:202
大家好,我在使用MVC3时遇到问题代码如下 public SystemController(IRepository repository) :this ( repository, new AspNetMembershipProviderWrapp…
如何使用 StructureMap 为静态类指定 setter 注入?
我目前正在研究设计模式书中的这段代码片段: public static class DomainEvents { public static IDomainEventHandlerFactory DomainEventHandlerFac…