Spring Framework

系统架构

image-20240202160101109

核心概念

IoC控制反转

为了解决耦合度偏高的问题,在使用对象时,程序中不要主动使用new产生对象,转换成由外部提供对象。

img

DI 依赖注入

注解

AOP面向切面编程

作用:在不惊动原始设计的基础上为其进行功能增强

Spring思想:无侵入式编程

image-20240215214517977

image-20240215214900105

image-20240216194828172

Spring事务

SpringMVC