Spring四、Spring IOC、DI、MVC、AOP时序图

 查看Spring源码,画出IOC、DI、AOP、MVC的时序图,方便以后查看回忆源码

1、IOC容器初始化

1.1 web ioc容器初始化

1.2 xml ioc容器初始化

 以ClassPathXmlApplicationContext的构造方法为入口

import org.springframework.context.support.ClassPathXmlApplicationContext;

public class IoCTest {

    public static void main(String[] args) {

        ClassPathXmlApplicationContext applicationContext = new ClassPathXmlApplicationContext("applicationContext.xml");
        applicationContext.getBean("myUser");
        
    }
    
}

猜你喜欢

转载自www.cnblogs.com/Qkxh320/p/spring_04.html