我试图避免在我的主项目中引用具体的类型库,但我收到了这个错误:
No default instance or named instance 'Default' for requested plugin type StackExchangeChatInterfaces.IClient
1.) Container.GetInstance(StackExchangeChatInterfaces.IClient ,{username=; password=; defaultRoomUrl=; System.Action`2[System.Object,System.Object]=System.Action`2[System.Object,System.Object]})
我已经设置了我的容器来扫描程序集,如下所示:
var container = new Container(x =>
{
x.Scan(scan =>
{
scan.AssembliesFromApplicationBaseDirectory();
scan.ExcludeNamespace("StructureMap");
scan.WithDefaultConventions();
scan.AddAllTypesOf<IMessageHandlers>();
});
//x.For<IClient>().Use<Client>(); //GetInstance will work if this line is not commented out.
});
当我尝试获取实例时,我收到错误,我获取实例的代码在这里:
chatInterface = container
.With("username").EqualTo(username)
.With("password").EqualTo(password)
.With("defaultRoomUrl").EqualTo(roomUrl)
.With<Action<object, object>>(delegate(object sender, object messageWrapper)
{
string message = ((dynamic)messageWrapper).Message;
Console.WriteLine("");
Console.WriteLine(message);
foreach (var item in messageHandlers)
{
item.MessageHandler.Invoke(message, chatInterface);
}
}).GetInstance<IClient>();
如果我明确地将具体类映射到界面,那么一切都很有效,但这意味着我需要引用Client
所在的项目,这是我不想做的。
答案 0 :(得分:2)
这真的很有趣。看起来默认约定不能使用这样的构造函数注册类型(在2.6.3和3+版本上都试过)。只在指定了无参数构造函数时才注册。看看这两个版本的来源,它真的很可疑,因为它应该注册。需要深入研究代码......
无论如何尝试使用自定义注册约定:
public class ClientConvention : IRegistrationConvention
{
public void Process(Type type, Registry registry)
{
if (type.IsClass && !type.IsAbstract && !type.IsGenericType &&
type.GetInterfaces().Contains(typeof(IClient)))
{
registry.For(typeof(IClient)).Use(type);
}
}
}
像这样配置:
var container = new Container(
c => c.Scan(
s =>
{
s.ExcludeNamespace("StructureMap");
s.WithDefaultConventions();
s.Convention<ClientConvention>();
s.AddAllTypesOf<IMessageHandlers>();
}));
这应该可以正常工作。
答案 1 :(得分:0)
默认类型扫描不会选择其构造函数包含字符串,数字或日期等基本参数的具体类型。我们的想法是,你无论如何都必须明确地配置这些内联依赖。
“但这意味着我需要引用客户所在的项目,我不想这样做。”