Spring中使用了那些设计模式?

Spring中用了那些设计模式呢?

一、Spring中常见的设计模式

工厂模式:BeanFactory
装饰器模式:BeanWrapper
代理模式:AopProxy
单例模式:ApplicationContext
委派模式:DispatcherServlet
策略模式:HandlerMapping
适配器模式:HandlerApdapter
模板方法模式:JdbcTemplate
观察者模式:ContentLoaderListener

二、Spring中四大模块及典型的设计模式

1. Spring IOC
工厂模式、单例模式、装配器模式
2. Sping AOP
代理模式、观察者模式
3. Spring MVC
委派模式、适配器模式
4. Spring JDBC
模板方法模式

三、Spring中常见的设计模式分类
Spring中使用了那些设计模式?