spring 目录 作者:马育民 • 2020-11-11 10:29 • 阅读:11421 # IOC 1. [spring介绍](https://www.malaoshi.top/show_1IX1KsjlJJs.html "spring介绍") 2. [java耦合与解耦](https://www.malaoshi.top/show_1IX1OJiZw2u.html "java耦合与解耦") 3. [spring IoC的概念和作用](https://www.malaoshi.top/show_1IX1QEd5f7F.html "spring IoC的概念和作用") 4. [spring IoC-创建工程基于xml开发](https://www.malaoshi.top/show_1IX1WD6mVWS.html "spring IoC-创建工程基于xml开发") 5. [spring IoC-运行图解](https://www.malaoshi.top/show_1IX23A4htVN.html "spring IoC-运行图解") 6. [spring IoC-底层原理](https://www.malaoshi.top/show_1IX8jGAZ8bJ.html "spring IoC-底层原理") 5. [spring IoC-bean的创建方式](https://www.malaoshi.top/show_1IX1fZMMGoY.html "spring IoC-bean的创建方式") 5. [spring IoC-bean标签的scope属性、bean的作用范围和生命周期](https://www.malaoshi.top/show_1IX1mKQApo4.html "spring IoC-bean标签的scope属性、bean的作用范围和生命周期") 6. [spring IoC-选择单例还是多例](https://www.malaoshi.top/show_1IXU57jjALc.html "spring IoC-选择单例还是多例") 7. [spring IoC 依赖注入](https://www.malaoshi.top/show_1IX1nLcSbwS.html "spring IoC 依赖注入") 8. [spring IoC 依赖注入-set()方式](https://www.malaoshi.top/show_1IX1nLKKcIR.html "spring IoC 依赖注入-set()方式") ### 注解开发 9. [spring IoC-创建工程基于注解开发(一)(@Service)](https://www.malaoshi.top/show_1IX1sRzL9NX.html "spring IoC-创建工程基于注解开发(一)(@Service)") 2. [spring IoC-创建工程基于注解开发(二)(@Configuration、@ComponentScan)](https://www.malaoshi.top/show_1IX2A3KPFHN.html "spring IoC-创建工程基于注解开发(二)(@Configuration、@ComponentScan)") 2. [spring IoC-注解运行图解](https://www.malaoshi.top/show_1IX24KRQwfA.html "spring IoC-注解运行图解") 10. [spring @Controller、@Service、@Repository、@Component总结](https://www.malaoshi.top/show_1IX1shXNigq.html "spring @Controller、@Service、@Repository、@Component总结") 7. [spring IoC-注解依赖注入(@Scope)](https://www.malaoshi.top/show_1IX28slXTe0.html "spring IoC-注解依赖注入(@Scope)") 3. [spring IoC-注解依赖注入(@Autowired)](https://www.malaoshi.top/show_1IX243u3GHh.html "spring IoC-注解依赖注入(@Autowired)") 1. [spring IoC-注解依赖注入(@Autowired)图解(只有一个类型匹配)](https://www.malaoshi.top/show_1IX26upTC9Z.html "spring IoC-注解依赖注入(@Autowired)图解(只有一个类型匹配)") 2. [spring IoC-注解依赖注入(@Autowired)图解(有多个类型匹配)](https://www.malaoshi.top/show_1IX26ug8HxY.html "spring IoC-注解依赖注入(@Autowired)图解(有多个类型匹配)") 5. [spring IoC-注解根据id依赖注入(@Qualifier)](https://www.malaoshi.top/show_1IX27OlyFbJ.html "spring IoC-注解根据id依赖注入(@Qualifier)") 6. [@Resource注解代替spring @Autowire、@Qualifier](https://www.malaoshi.top/show_1IX27x09kzI.html "@Resource注解代替spring @Autowire、@Qualifier") 3. [@Resource与@Autowire区别](https://www.malaoshi.top/show_1IX27cdwbuc.html "@Resource与@Autowire区别") 8. [spring IoC @bean注解](https://www.malaoshi.top/show_1EF5gry55aKL.html "spring IoC @bean注解") 9. [spring 集成mybatis(一)](https://www.malaoshi.top/show_1IX2tmBWQp3.html "spring 集成mybatis(一)") 11. [@postConstruct 和 @PreDestroy](https://www.malaoshi.top/show_1IXPWdYuTUZ.html "@postConstruct 和 @PreDestroy") # aop ### java 代理 1. [代理模式](https://www.malaoshi.top/show_1IX2mVl1jBg.html "代理模式") 1. [设计模式-代理模式-java](https://www.malaoshi.top/show_1IX2q7z1T0T.html "设计模式-代理模式-java") 2. [设计模式-代理模式-JDK动态代理(Proxy.newProxyInstance)](https://www.malaoshi.top/show_1IX2q8u8R2V.html "设计模式-代理模式-JDK动态代理(Proxy.newProxyInstance)") 3. [设计模式-代理模式-cglib动态代理](https://www.malaoshi.top/show_1IX2r18NZ3q.html "设计模式-代理模式-cglib动态代理") ### spring aop 4. [spring aop的概念和作用](https://www.malaoshi.top/show_1IX2x6j2Rw5.html "spring aop的概念和作用") 4. [spring aop Pointcut切入点、Advice通知、Aspect切面](https://www.malaoshi.top/show_1IX9SEIqQGH.html "spring aop Pointcut切入点、Advice通知、Aspect切面") 5. [spring aop创建工程基于注解开发(@Before、@After、@AfterReturning、 @AfterThrowing)](https://www.malaoshi.top/show_1IX2zv3HVwY.html "spring aop创建工程基于注解开发(@Before、@After、@AfterReturning、 @AfterThrowing)") - [spring @EnableAspectJAutoProxy 注解](https://www.malaoshi.top/show_1IXUetDK7Ji.html "spring @EnableAspectJAutoProxy 注解") 5. [spring aop基于注解开发(@Around)](https://www.malaoshi.top/show_1IX39gZ2Fa8.html "spring aop基于注解开发(@Around)") 6. [spring aop @Before、@After、@AfterReturning、 @AfterThrowing、@Around执行顺序](https://www.malaoshi.top/show_1IX3B3Ze86b.html "spring aop @Before、@After、@AfterReturning、 @AfterThrowing、@Around执行顺序") 7. [spring aop Pointcut切入点表达式:within和execution](https://www.malaoshi.top/show_1IX5m1UZDrTY.html "spring aop Pointcut切入点表达式:within和execution") ### 案例 7. [spring 集成mybatis(二)-aop注解实现事务管理](https://www.malaoshi.top/show_1IX3BNHxSy8.html "spring 集成mybatis(二)-aop注解实现事务管理") # 事务 1. [spring事务目录](https://www.malaoshi.top/show_1EF5sjLnY3Yh.html "spring事务目录") 8. [spring创建工程集成mybatis(全注解、事务注解)](https://www.malaoshi.top/show_1IX3MyVejhB.html "spring创建工程集成mybatis(全注解、事务注解)") 原文出处:http://malaoshi.top/show_1IX1QF0NJXI.html