- IoC(核心中的核心):Inverse of Control,控制反转。对象创建的权利由程序员交给Spring框架
- AOP:Aspect Oriented Programming,面向切面编程。在不修改目标对象的源代码情况下,增强IoC容器中Bean的功能
- DI:Dependency Injection,依赖注入。在Spring框架负责创建Bean对象时,动态的将依赖对象注入到Bean组件中!!
- Spring容器:就是IoC容器
posts
Spring 核心概念
IoC(**核心中的核心**):Inverse of Control,控制反转。**对象创建的权利由程序员交给Spring框架** AOP:Aspect Oriented Programming,面向切面编程。在不修改目标对象的源代码情况下,增强IoC容器中Bean的功能 DI:Dependency