Ninject之旅之十四:Ninject在ASP.NET Web Form程序上的应用(附程序下载)

时间:2021-06-01 03:32:29

摘要

ASP.NET Web Forms没有像MVC那样的可扩展性,也不可能使它创建UI页面支持没有构造函数的的激活方式。这个Web Forms应用程序的的局限性阻止了它使用构造函数注入模式,但是仍能够使用其他的DI模式,例如初始化方法模式。

下面使用一个具体的ASP.NET Web Forms应用程序使用Ninject例子来说明怎样在ASP.NET Web Forms上使用Ninject。

程序下载

1. 在解决方案Demo.Northwind内,创建MVC工程Demo.Northwind.MVC。

2. 添加引用。

使用NutGet Manager添加引用:

Ninject之旅之十四:Ninject在ASP.NET Web Form程序上的应用(附程序下载)

添加Demo.Northwind.Core工程的引用。

3. 修改根路径下的Web.config文件。

添加connectionStrings节。

  <connectionStrings>
<add name="NorthwindContext" providerName="System.Data.SqlClient" connectionString="Data Source=localhost;Initial Catalog=NORTHWND;Integrated Security=True" />
</connectionStrings>

4. 修改Ninject配置。

展开App_Start文件夹,发现自动添加了NinjectWeb.cs代码文件和NinjectWebCommon.cs代码文件。

Ninject之旅之十四:Ninject在ASP.NET Web Form程序上的应用(附程序下载)

NinjectWeb.cs文件不用修改,它是一个静态类,有一个静态函数Start。

         public static void Start()
{
DynamicModuleUtility.RegisterModule(typeof(NinjectHttpModule));
}

这将NinjectHttpModule注入到Http请求流程中。

NinjectWebCommon.cs文件内容跟在ASP.NET MVC上使用Ninject的NinjectWebCommon.cs一样。

查看他的CreateKernel方法和RegisterServices方法:

         private static IKernel CreateKernel()
{
var kernel = new StandardKernel();
try
{
kernel.Bind<Func<IKernel>>().ToMethod(ctx => () => new Bootstrapper().Kernel);
kernel.Bind<IHttpModule>().To<HttpApplicationInitializationHttpModule>(); RegisterServices(kernel);
return kernel;
}
catch
{
kernel.Dispose();
throw;
}
} /// <summary>
/// Load your modules or register your services here!
/// </summary>
/// <param name="kernel">The kernel.</param>
private static void RegisterServices(IKernel kernel)
{
}

修改RegisterServices方法,添加DI代码:

             kernel.Bind(x => x.FromAssembliesMatching("Demo.Northwind.*")
.SelectAllClasses().EndingWith("Repository")
.BindAllInterfaces());

5. 修改Default.aspx,添加一个GridView。

<%@ Page Title="Home Page" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="Demo.Northwind.Webforms._Default" %>

<asp:Content ID="BodyContent" ContentPlaceHolderID="MainContent" runat="server">
<div class="row">
<asp:GridView ID="customersGridView" runat="server"></asp:GridView>
</div>
</asp:Content>

6. 修改Default.aspxa.cs代码。

 using Demo.Northwind.Core.Interface;
using Demo.Northwind.Core.Model;
using System;
using System.Linq;
using System.Web.UI; namespace Demo.Northwind.Webforms
{
public partial class _Default : Page
{
private ICustomerRepository repository; [Ninject.Inject]
public void Setup(ICustomerRepository customerRepository)
{
if (customerRepository == null)
{
throw new ArgumentNullException("customerRepository");
}
this.repository = customerRepository;
} protected void Page_Load(object sender, EventArgs e)
{
var customers = repository.GetAll();
customersGridView.DataSource = customers.ToList<Customer>();
customersGridView.DataBind();
}
}
}

接口ICustomerRepository通过Setup方法的参数注入,而不是通过构造函数参数注入。这是因为ASP.NET Web Forms UI引擎不能够用默认构造函数初始化UI元素。这个Setup方法在页面对象创建的时候被调用,使得它的参数被解析和被注入。

运行程序,得到执行结果:

Ninject之旅之十四:Ninject在ASP.NET Web Form程序上的应用(附程序下载)