Spring理解

Spring主要包括Ioc和Aop两部分

Ioc:依赖注入
Aop:切面编程

Spring原理:
Spring就是一个map容器,从beans.xml配置文件中读取需要实例化的的类并进行实例化存在map容器中

import java.lang.reflect.Method;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import org.jdom.Document;
import org.jdom.Element;
import org.jdom.input.SAXBuilder;

public class ClassPathXmlApplicationContext implements BeanFactory {

private Map<String , Object> beans = new HashMap<String, Object>();


//IOC Inverse of Control DI Dependency Injection
public ClassPathXmlApplicationContext() throws Exception {
	SAXBuilder sb=new SAXBuilder();
    
    Document doc=sb.build(this.getClass().getClassLoader().getResourceAsStream("beans.xml")); //构造文档对象
    Element root=doc.getRootElement(); //获取根元素HD
    List list=root.getChildren("bean");//取名字为disk的所有元素
    for(int i=0;i<list.size();i++){
       Element element=(Element)list.get(i);
       String id=element.getAttributeValue("id");
       String clazz=element.getAttributeValue("class");
       Object o = Class.forName(clazz).newInstance();
       System.out.println(id);
       System.out.println(clazz);
       beans.put(id, o);
       
       for(Element propertyElement : (List<Element>)element.getChildren("property")) {
    	   String name = propertyElement.getAttributeValue("name"); //userDAO
    	   String bean = propertyElement.getAttributeValue("bean"); //u
    	   Object beanObject = beans.get(bean);//UserDAOImpl instance
    	   
    	   String methodName = "set" + name.substring(0, 1).toUpperCase() + name.substring(1);
    	   System.out.println("method name = " + methodName);
    	   
    	   Method m = o.getClass().getMethod(methodName, beanObject.getClass().getInterfaces()[0]);
    	   m.invoke(o, beanObject);
       }
       
       
    }  
  
}



public Object getBean(String id) {
	return beans.get(id);
}

}

beans.xml信息配置:
在这里插入图片描述

2.基本spring开发需要的jar包:
spring.jar , jarkata-commons/commons-loggin.jar

3.spring注入类型:
setter注入
构造方法注入
接口注入

4.context:annotation-config和context:component-scan区别

使用<context:annotation- config/>隐式地向 Spring容器注册AutowiredAnnotationBeanPostProcessor、RequiredAnnotationBeanPostProcessor、CommonAnnotationBeanPostProcessor以及PersistenceAnnotationBeanPostProcessor这4个BeanPostProcessor

context:annotation-config 是用于激活那些已经在spring容器里注册过的bean(无论是通过xml的方式还是通过package sanning的方式)上面的注解。

context:component-scan除了具有context:annotation-config的功能之外,context:component-scan还可以在指定的package下扫描以及注册javabean 。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值