Unity配置错误-类型没有接受参数的构造函数

本文关键字:参数 构造函数 配置 错误 类型 Unity | 更新日期: 2023-09-27 18:29:32

背景:我有一个助手类,用于设置ExceptionManager的策略。在这个类中,我想要注入IExceptionHandler接口的各种实现,并且我想要通过配置文件来控制它。

事情看起来是这样的:Helper类和接口:

public class ErrorHelper: IErrorHelper
{
    private static IExceptionHandler _exceptionHandler;
    public ErrorHelper(IExceptionHandler exceptionHandler)
    {
        _exceptionHandler = exceptionHandler;
    }
    public IList<ExeptionPolicyDefinition> GetPolicies()
    {
        //Do stuff here and return policies
        //This is the place where _exceptionHandler is used
    }
}
public interface IErrorHelper
{
    IList<ExeptionPolicyDefinition> GetPolicies();
}

IExceptionHandler实现:

public class MyExceptionHandler: IExceptionHandler
{
    public MyExceptionHandler()
    {
        //Do some stuff here
    }
    public Exception HandleException(Exception exp, Guid iId)
    {
        //Handle exception and log
    }
}

统一引导类:

public class UnityBootstrap
{
    private static IUnityContainer _unityContainer;
    public static void RegisterTypes(IUnityContainer container)
    {
        _unityContainer = container;
        var section = (UnityConfigurationSection)ConfigurationManager.GetSection("unity");
        section.Configure(_unityContainer);
    }
    public static void SetPolicies()
    {
        var helper = _unityContainer.Resolve<IErrorHelper>();
        //Set ExceptionManager and ExceptionPolicy
    }
}

Unity配置文件

<?xml version="1.0" encoding="utf-8"?>
<unity xmlns="http://schemas/microsoft.com/practices/2010/unity">
    <alias alias="IExceptionHandler" type="Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.IExceptionHandler, Microsoft.Practices.EnterpriseLibrary.ExceptionHandling, Version=6.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
    <alias alias="MyExceptionHandler" type="TEST.Shared.MyExceptionHandler, Test.Shared"/>
    <alias alias="ErrorHelper" type="TEST.Helpers.Errorhelper, TEST.Helpers"/>
    <alias alias="IErrorHelper" type="TEST.Helpers.IErrorhelper, TEST.Helpers"/>
    <container>
        <register type="IExceptionHandler" mapTo="MyExceptionHandler"/>
        <register type="IErrorHelper" mapTo="ErrorHelper">
             <constructor>
                 <param name="exceptionHandler" type="MyExceptionHandler">
                     <dependency type="MyExceptionHandler"/>
                 </param>
             </constructor>
        </register>
    </container>
</unity>

所以,经过大量的写作和格式化,这是对我现有内容的简化。问题是,当我调用RegisterTypes时,我在标题中得到错误,指出ErrorHelper没有接受名称为exceptionHandler的参数的构造函数,而构造函数中的参数名称显然是exceptionHandler

如果有人能指出我错在哪里,请这样做。

PS1:很抱歉问题太长

PS2:我对DI和Unity 很陌生

Unity配置错误-类型没有接受参数的构造函数

构造函数中参数的类型是IExceptionHandler,而不是MyExceptionHandler。

尝试:<param name="exceptionHandler" type="IExceptionHandler">