Autofac:输入' MyController'没有默认构造函数

时间:2016-07-01 07:08:31

标签: c# asp.net asp.net-web-api dependency-injection autofac

我有一个Web Api应用程序,它使用另一个REST Api客户端。我将REST API客户端包装到服务中。

的Myproj /服务/ PostDataService.cs

  public interface IPostDataService
    {
        Task<IList<Post>> GetAllPosts();
    }

    public class PostDataService : IPostDataService
    {
        private static IDataAPI NewDataAPIClient()
        {
            var client = new DataAPI(new Uri(ConfigurationManager.AppSettings["dataapi.url"]));
            return client;
        }

        public async Task<IList<Post>> GetAllPosts()
        {
            using (var client = NewDataAPIClient())
            {
                var result = await client.Post.GetAllWithOperationResponseAsync();
                return (IList<Post>) result.Response.Content;
            }
        }
    }
 ....

我正在使用 AutoFac 并在控制器中注入服务

的Myproj /控制器/ PostController.cs

public class PostController : ApiController
    {
        private readonly IPostDataService _postDataService;

        public PostController(IPostDataService postDataService)
        {
            _postDataService = postDataService;
        }

        public async Task<IEnumerable<Post>> Get()
        {
            return await _postDataService.GetAllPosts();
        }
    }

但我收到了这个错误。

  

尝试创建类型的控制器时发生错误   &#39; PostController中&#39 ;.确保控制器具有无参数   公共建设者。

这是我的 Global.asax.cs

public class WebApiApplication : System.Web.HttpApplication
    {
        protected void Application_Start()
        {
            ContainerConfig.Configure();
            GlobalConfiguration.Configure(WebApiConfig.Register);
        }
    }

    public static class ContainerConfig
    {
        private static IContainer _container;

        public static IContainer GetContainer()
        {
            if (_container != null)
                return _container;

            var builder = new ContainerBuilder();

            builder.RegisterType<PostDataService>()
               .AsSelf()
               .InstancePerLifetimeScope()
               .AsImplementedInterfaces();

            _container = builder.Build();

            return _container;
        }

        public static IContainer Configure()
        {
            var container = GetContainer();

            var webApiResolver = new AutofacWebApiDependencyResolver(container);
            GlobalConfiguration.Configuration.DependencyResolver = webApiResolver;

            return container;
        }

有人能发现我在这里缺少的东西吗?

由于

1 个答案:

答案 0 :(得分:4)

我想念

builder.RegisterApiControllers(typeof(PostController).Assembly).

显然,控制器也需要注册。

相关问题