spring ioc

純潔的微笑發表於2016-03-23

spring ioc是spring的核心之一,也是spring體系的基礎,那麼spring ioc所依賴的底層技術是什麼的?反射,以前我們開發程式的時候物件之間的相互呼叫需要用new來實現,現在所有的bean都是通過spring容器來管理。這樣做有什麼好處呢?解耦!以前程式直接的呼叫用new直接給寫死了,現在我們可以通過注入不同的介面實現類來完成物件直接的呼叫。

 

首先來聊聊Java的反射機制

1、反射機制的作用:

  反編譯:.class-->.java

  通過反射機制訪問java物件的屬性,方法,構造方法等;

2、Java反射機制用途:

  在執行時判斷任意一個物件所屬的類

  在執行時構造任意一個類的物件

  在執行時判斷任意一個類所具有的成員變數和方法

  在執行時呼叫任意一個物件的方法

3、sun為我們提供了那些反射機制中的類:

  java.lang.Class;                
  java.lang.reflect.Constructor;           
  java.lang.reflect.Field;        
  java.lang.reflect.Method;
  java.lang.reflect.Modifier;

4、反射實現的方式

Class c=Class.forName("className");
註明:className必須為全名,也就是得包含包名,比如,cn.xx.UserInfo;

Object obj=c.newInstance();
//建立物件的例項 

Constructor getConstructor(Class[] params)
//根據指定引數獲得public構造器 

Constructor[] getConstructors()
//獲得public的所有構造器 

Constructor getDeclaredConstructor(Class[] params)
//根據指定引數獲得public和非public的構造器 

Constructor[] getDeclaredConstructors()
//獲得public的所有構造器 

ewInstance();
//建立物件的例項 

獲得類方法的方法
Method getMethod(String name, Class[] params),
根據方法名,引數型別獲得方法 

Method[] getMethods()
//獲得所有的public方法 

Method getDeclaredMethod(String name, Class[] params)
//根據方法名和引數型別,獲得public和非public的方法 

Method[] getDeclaredMethods()
//獲得所以的public和非public方法

獲得類中屬性的方法
Field getField(String name)
//根據變數名得到相應的public變數 

Field[] getFields()
//獲得類中所以public的方法 

Field getDeclaredField(String name)
//根據方法名獲得public和非public變數 

Field[] getDeclaredFields()
//獲得類中所有的public和非public方法

 

總結一句,以前寫的程式碼,類的熟悉、方法什麼東西的都固定了,如果使用反射我們就可以在執行的時候動態的去修改、增刪物件的熟悉、方法等等。

 

spring IOC是如果使用反射來完成物件的注入呢?

1、讀取配置檔案,或者掃描註解屬性

2、根據配置檔案,通過反射例項化物件

3、給物件注入依賴的屬性

4、放到類似hashMap結構中,供系統呼叫

 

/**
* 學習版容器
*
*/
public class LeamClassPathXMLApplicationContext {
    private List<Definition> beanDefines = new ArrayList<Definition>();
    private Map<String, Object> sigletons = new HashMap<String, Object>();

    

    public LeamClassPathXMLApplicationContext(String filename){
        this.readXML(filename);
        this.instanceBeans();
        this.injectObject();
    }

    /**
     * 為bean物件的屬性注入值
     */
    private void injectObject() {
        for(Definition beanDefinition : beanDefines){
           Object bean = sigletons.get(beanDefinition.getId());
            if(bean!=null){
                try {
                    PropertyDescriptor[] ps = Introspector.getBeanInfo(bean.getClass()).getPropertyDescriptors();
                    for(ProsDefinition propertyDefinition : beanDefinition.getPropertys()){
                        for(PropertyDescriptor properdesc : ps){
                            if(propertyDefinition.getName().equals(properdesc.getName())){
                        Method setter = properdesc.getWriteMethod();//獲取屬性的setter方法 
                               if(setter!=null){
                                    Object value = sigletons.get(propertyDefinition.getRef());
                                    setter.setAccessible(true);
                                    setter.invoke(bean, value);//把引用物件注入到屬性                                }
                               break;
                           }
                        }
                    }
                } catch (Exception e) {
                }
            }
        }
    }

    /**
     * 完成bean的例項化
     */
    private void instanceBeans() {
        for(Definition beanDefinition : beanDefines){
            try {
                if(beanDefinition.getClassName()!=null && !"".equals(beanDefinition.getClassName().trim()))
                   sigletons.put(beanDefinition.getId(), 
                   Class.forName(beanDefinition.getClassName()).newInstance());
            } catch (Exception e) {
               e.printStackTrace();
            }
        }       
    }

    /**
     * 讀取xml配置檔案
     * @param filename
     */
    private void readXML(String filename) {
           SAXReader saxReader = new SAXReader();   
            Document document=null;   
          try{
           URL xmlpath = this.getClass().getClassLoader().getResource(filename);
           document = saxReader.read(xmlpath);
           Map<String,String> nsMap = new HashMap<String,String>();
           nsMap.put("ns","http://www.springframework.org/schema/beans");//加入名稱空間
             XPath xsub = document.createXPath("//ns:beans/ns:bean");//建立beans/bean查詢路徑
             xsub.setNamespaceURIs(nsMap);//設定名稱空間
             List<Element> beans = xsub.selectNodes(document);//獲取文件下所有bean節點 
             for(Element element: beans){
              String id = element.attributeValue("id");//獲取id屬性值
                String clazz = element.attributeValue("class"); //獲取class屬性值        
                Definition beanDefine = new Definition(id, clazz);
               XPath propertysub =  element.createXPath("ns:property");
               propertysub.setNamespaceURIs(nsMap);//設定名稱空間
                  List<Element> propertys = propertysub.selectNodes(element);
               for(Element property : propertys){                    
                    String propertyName = property.attributeValue("name");//元素內部引用的屬性也獲取
                    String propertyref = property.attributeValue("ref");
                 ProsDefinition propertyDefinition = new ProsDefinition(propertyName, propertyref);
                    beanDefine.getPropertys().add(propertyDefinition);
                }
                beanDefines.add(beanDefine);
             } 
            }catch(Exception e){   
                e.printStackTrace();
            }
    }

    /**

     * 獲取bean例項
     * @param beanName
     * @return
     */
    public Object getBean(String beanName){
        return this.sigletons.get(beanName);
    }

}

 

spring ioc核心思想

ioc的思想最核心的地方在於,資源不由使用資源的雙方管理,而由不使用資源的第三方管理,這可以帶來很多好處。第一,資源集中管理,實現資源的可配置和易管理。第二,降低了使用資源雙方的依賴程度,也就是我們說的耦合度。

 

相關文章