码迷,mamicode.com
首页 > 编程语言 > 详细

大话spring.net之IOC

时间:2015-03-31 22:15:54      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:spring   ioc   控制反转   

      在学习Spring.NET这个控制反转(IoC)和面向切面(AOP)的容器框架之前,我们先来看一下什么是控制反转(IoC)。

  控制反转(Inversion of Control,英文缩写为IoC),也叫依赖注入(Dependency Injection)。我个人认为控制反转的意思是依赖对象(控制权)发生转变,由最初的类本身来管理依赖对象转变为IoC框架来管理这些对象,使得依赖脱离类本身的控制,从而实现松耦合。

我们先来看一段代码

技术分享
技术分享namespace Dao
技术分享
{
技术分享    
public interface IPersonDao
技术分享    
{
技术分享        
void Save();
技术分享    }

技术分享
技术分享    
public class PersonDao : IPersonDao
技术分享    
{
技术分享        
public void Save()
技术分享        
{
技术分享            Console.WriteLine(
"保存 Person");
技术分享        }

技术分享    }

技术分享}

技术分享
技术分享
namespace SpringNetIoC
技术分享
{
技术分享    
class Program
技术分享    
{
技术分享        
private static void NormalMethod()
技术分享        
{
技术分享            IPersonDao dao 
= new PersonDao();
技术分享            dao.Save();
技术分享            Console.WriteLine(
"我是一般方法");
技术分享        }

技术分享    }

技术分享}

 

Program必然需要知道IPersonDao接口和PersonDao类。为了不暴露具体实现,我可以运用设计模式中的抽象工厂模式(Abstract Factory)来解决。

 

技术分享
namespace DaoFactory
{
    
public static class DataAccess
    {
        
public static IPersonDao CreatePersonDao()
        {
            
return new PersonDao();
        }
    }
}
技术分享

 

技术分享
namespace SpringNetIoC
{
    
class Program
    {        
private static void FactoryMethod()
        {
            IPersonDao dao 
= DataAccess.CreatePersonDao();
            dao.Save();
            Console.WriteLine(
"我是工厂方法");
        }
    }
}

这时,Program只需要知道IPersonDao接口和工厂,而不需要知道PersonDao类。然后我们试图想象,要是有这样的工厂框架帮我们管理依赖的对象就好了,于是控制反转出来了。

 

技术分享
<?xml version="1.0" encoding="utf-8" ?>
<configuration>

  
<configSections>
    
<sectionGroup name="spring">
      
<section name="context" type="Spring.Context.Support.ContextHandler, Spring.Core" />
      
<section name="objects" type="Spring.Context.Support.DefaultSectionHandler, Spring.Core" />
    
</sectionGroup>
  
</configSections>

  
<spring>

    
<context>
      
<resource uri="config://spring/objects" />
    
</context>

    
<objects xmlns="http://www.springframework.net">
      
<description>一个简单的控制反转例子</description>


      
<object id="PersonDao" type="Dao.PersonDao, Dao" />


    
</objects>

  
</spring>

</configuration>

 

技术分享
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Dao;
using DaoFactory;
using Spring.Context;
using Spring.Context.Support;

namespace SpringNetIoC
{
    
class Program
    {
        
static void Main(string[] args)
        {
            
//NormalMethod();  // 一般方法
            
//FactoryMethod();  // 工厂方法
            IoCMethod();  // IoC方法"

            Console.ReadLine();
        }

        
private static void NormalMethod()
        {
            IPersonDao dao 
= new PersonDao();
            dao.Save();
            Console.WriteLine(
"我是一般方法");
        }

        
private static void FactoryMethod()
        {
            IPersonDao dao 
= DataAccess.CreatePersonDao();
            dao.Save();
            Console.WriteLine(
"我是工厂方法");
        }

        
private static void IoCMethod()
        {
            IApplicationContext ctx 
= ContextRegistry.GetContext();
            IPersonDao dao 
= ctx.GetObject("PersonDao"as IPersonDao;
            
if (dao != null)
            {
                dao.Save();
                Console.WriteLine(
"我是IoC方法");
            }
        }
    }
}

一个简单的控制反转程序例子就实现了。

这样从一定程度上解决了Program与PersonDao耦合的问题,但是实际上并没有完全解决耦合,只是把耦合放到了XML 文件中,通过一个容器在需要的时候把这个依赖关系形成,即把需要的接口实现注入到需要它的类中。我个人认为可以把IoC模式看做是工厂模式的升华,可以把IoC看作是一个大工厂,只不过这个大工厂里要生成的对象都是在XML文件中给出定义的。

大话spring.net之IOC

标签:spring   ioc   控制反转   

原文地址:http://blog.csdn.net/zhanghongjie0302/article/details/44786735

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!