Spring:IOC释义(Bean容器、注解、依赖注入)

79 篇文章 1 订阅

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"       
       xsi:schemaLocation="http://www.springframework.org/schema/beans
           http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
           http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd">
          
          <context:annotation-config/>
          
          <bean id="personDaoxxxx" class="cn.itcast.dao.impl.PersonDaoBean"></bean>
          <bean id="personService" class="cn.itcast.service.impl.PersonServiceBean">
              <!--
              <constructor-arg index="0" type="cn.itcast.dao.PersonDao" ref="personDao"/>
              <constructor-arg index="1" value="传智播客"/>
               -->
          </bean>
</beans>


首先通过读取XML取得所有的bean定义,通过反射就能生成所有的bean放入容器中,然后要么通过XML、要么通过注解就能注入容器中的对象了。

/**

 * 传智博客版容器
 *
 */
public class ItcastClassPathXMLApplicationContext {
    private List<BeanDefinition> beanDefines = new ArrayList<BeanDefinition>();
    private Map<String, Object> sigletons = new HashMap<String, Object>();
    
    public ItcastClassPathXMLApplicationContext(String filename){
        this.readXML(filename);//读取XML配置获取bean的定义
        this.instanceBeans();//反射实例化bean
        this.annotationInject();//注解注入对象
        this.injectObject();//XML注入对象或者属性

    }
    /**
     * 通过注解实现注入依赖对象
     */
    private void annotationInject() {
        for(String beanName : sigletons.keySet()){
            Object bean = sigletons.get(beanName);
            if(bean!=null){
                try {
                    PropertyDescriptor[] ps = Introspector.getBeanInfo(bean.getClass()).getPropertyDescriptors();
                    for(PropertyDescriptor properdesc : ps){
                        Method setter = properdesc.getWriteMethod();//获取属性的setter方法
                        if(setter!=null && setter.isAnnotationPresent(ItcastResource.class)){
                            ItcastResource resource = setter.getAnnotation(ItcastResource.class);
                            Object value = null;
                            if(resource.name()!=null && !"".equals(resource.name())){
                                value = sigletons.get(resource.name());
                            }else{
                                value = sigletons.get(properdesc.getName());
                                if(value==null){
                                    for(String key : sigletons.keySet()){
                                        if(properdesc.getPropertyType().isAssignableFrom(sigletons.get(key).getClass())){
                                            value = sigletons.get(key);
                                            break;
                                        }
                                    }
                                }                                
                            }
                            setter.setAccessible(true);
                            setter.invoke(bean, value);//把引用对象注入到属性
                        }
                    }
                    Field[] fields = bean.getClass().getDeclaredFields();
                    for(Field field : fields){
                        if(field.isAnnotationPresent(ItcastResource.class)){
                            ItcastResource resource = field.getAnnotation(ItcastResource.class);
                            Object value = null;
                            if(resource.name()!=null && !"".equals(resource.name())){
                                value = sigletons.get(resource.name());
                            }else{
                                value = sigletons.get(field.getName());
                                if(value==null){
                                    for(String key : sigletons.keySet()){
                                        if(field.getType().isAssignableFrom(sigletons.get(key).getClass())){
                                            value = sigletons.get(key);
                                            break;
                                        }
                                    }
                                }                                
                            }
                            field.setAccessible(true);//允许访问private字段
                            field.set(bean, value);
                        }
                    }
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
        }
    }

    /**
     * 为bean对象的属性注入值
     */
    private void injectObject() {
        for(BeanDefinition beanDefinition : beanDefines){
            Object bean = sigletons.get(beanDefinition.getId());
            if(bean!=null){
                try {
                    PropertyDescriptor[] ps = Introspector.getBeanInfo(bean.getClass()).getPropertyDescriptors();
                    for(PropertyDefinition propertyDefinition : beanDefinition.getPropertys()){
                        for(PropertyDescriptor properdesc : ps){
                            if(propertyDefinition.getName().equals(properdesc.getName())){
                                Method setter = properdesc.getWriteMethod();//获取属性的setter方法 ,private
                                if(setter!=null){
                                    Object value = null;
                                    if(propertyDefinition.getRef()!=null && !"".equals(propertyDefinition.getRef().trim())){
                                        value = sigletons.get(propertyDefinition.getRef());
                                    }else{
                                        value = ConvertUtils.convert(propertyDefinition.getValue(), properdesc.getPropertyType());
                                    }
                                    setter.setAccessible(true);
                                    setter.invoke(bean, value);//把引用对象注入到属性
                                }
                                break;
                            }
                        }
                    }
                } catch (Exception e) {
                }
            }
        }
    }
    /**
     * 完成bean的实例化
     */
    private void instanceBeans() {
        for(BeanDefinition 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属性值        
                BeanDefinition beanDefine = new BeanDefinition(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");
                    String propertyValue = property.attributeValue("value");
                    PropertyDefinition propertyDefinition = new PropertyDefinition(propertyName, propertyref, propertyValue);
                    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);
    }

}




public class BeanDefinition {
    private String id;
    private String className;
    private List<PropertyDefinition> propertys = new ArrayList<PropertyDefinition>();
    
    public BeanDefinition(String id, String className) {
        this.id = id;
        this.className = className;
    }

。。。

}


public class PropertyDefinition {

    private String name;
    private String ref;
    private String value;
    public PropertyDefinition(String name, String ref, String value) {
        this.name = name;
        this.ref = ref;
        this.value = value;

    }

。。。

}


@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.FIELD, ElementType.METHOD})
public @interface ItcastResource {
    public String name() default "";
}


@Test public void instanceSpring(){
        ItcastClassPathXMLApplicationContext ctx = new ItcastClassPathXMLApplicationContext("beans.xml");
        PersonService personService = (PersonService)ctx.getBean("personService");
        personService.save();
        //ctx.close();
        
    }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值