• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

在asp.net页面上得到Castle容器的实例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请
 在项目中使用Castle IOC容器,Asp.net程序中如何得到Castle容器内。

可以如下实现:

1Gloabal实现接口IContainerAccessor

public class Global : System.Web.HttpApplication, IContainerAccessor
      {

         /// <summary>
         /// 必需的设计器变量。
         /// </summary>
          private System.ComponentModel.IContainer components = null;
          private static WindsorContainer container;
         
         public Global()
         {
              InitializeComponent();
         }   

         protected void Application_Start(Object sender, EventArgs e)
         {
              container = new MyContainer(new XmlInterpreter("app_config.xml"));
         } 

          protected void Session_Start(Object sender, EventArgs e)
         {

         }

……
    protected void Application_End(Object sender, EventArgs e)
    {
              container.Dispose();
    } 

          #region IContainerAccessor implementation

         public IWindsorContainer Container
         {
              get { return container; }
         }
             
}

    2、使用如下类来获取容器实例,这段代码来自Castle.MVC
     /// <summary>
     /// Uses the HttpContext and the <see cref="IContainerAccessor"/> 
     /// to access the container instance.
     /// </summary>
     public abstract class ContainerWebAccessorUtil
     {

         /// <summary>
         /// 从application中获取一个容器实例
         /// </summary>
         /// <returns>返回一个 IWindsorContainer</returns>
         public static IWindsorContainer ObtainContainer()
         {

              IContainerAccessor containerAccessor =

                   HttpContext.Current.ApplicationInstance as IContainerAccessor;  
              if (containerAccessor == null)
              {
                   throw new ApplicationException("你必须在HttpApplication中实现接口 IContainerAccessor 暴露容器的属性);

              }    

              IWindsorContainer container = containerAccessor.Container;  
              if (container == null)
              {
                   throw new ApplicationException("HttpApplication 得不到容器的实例");
              }
              return container;

         }
     } 

3、在具体的用户控件,页面的后置代码中通过ContainerWebAccessorUtil. ObtainContainer()获取容器实例。当然如果使用Castle.MVC,MVC框架也是这样用的,自己就不要这么麻烦了,可以将这个写在页面和控件的基类中。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
ASP.NET MVC中的Json Binding和Validate发布时间:2022-07-10
下一篇:
ASP.NET中使用Access数据库的困惑发布时间:2022-07-10
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap