通过属性注入和构造器注入加载Spring bean

1.工作流程

1).spring-context包下的ClassPathXmlApplicationContext类创建对象,对象的构造函数参数为bean.xml
路径
2).调用getBean()方法返回xml中配置好的bean

2.xml配置

属性注入(需要bean类中有setter方法)

    

构造函数注入(需要bean类中有与传参匹配的构造方法)

    
        
        
    

参考源码:https://github.com/hegoudai/Learning-Spring/tree/master/bean-usexml

你可能感兴趣的:(通过属性注入和构造器注入加载Spring bean)