Spring 框架中都用到了哪些設計模式?
Spring 框架中使用到了大量的設計模式,下面列舉了比較有代表性的:
1、代理模式—在 AOP 和 remoting 中被用的比較多。
2、單例模式:在 spring 配置文件中定義的 bean 默認為單例模式。
3、模板模式:用來解決代碼重復的問題。
比如. RestTemplate, JmsTemplate, JpaTemplate。
4、委派模式:Spring 提供了 DispatcherServlet 來對請求進行分發。
5、工廠模式:BeanFactory 用來創建對象的實例,貫穿於 BeanFactory / ApplicationContext
接口的核心理念。
6、代理模式:AOP 思想的底層實現技術,Spring 中采用 JDK Proxy 和 CgLib 類庫。
