1.1 上次课内容回顾
l Spring的AOP的注解(思想--)
n AOP的相关的注解
u @Aspect :定义切面
u 通知的注解
l @Before :前置通知
l @AfterReturning :后置通知
l @Around :环绕通知
l @AfterThrowing :异常抛出通知
l @After :最终通知
u 切入点
l @Pointcut :切入点
l Spring的JDBC模板
n Spring有持久层解决方案
n 手动使用JDBC模板
n 将连接池和JDBC模板交给Spring管理
n 配置开源连接池
u DBCP
u C3P0
n 使用JDBC模板完成CRUD的操作
l Spring的事务管理
n 事务回顾
n Spring的事务管理的API
u PlatformTransactionManager :平台事务管理器(真正管理事务)
l DataSourceTransactionManager
l HibernateTransactionManager
u TransactionDefinition :事务定义信息
u TransactionStatus :事务状态
n Spring事务管理
u 编程式事务管理(了解)
u 声明式事务管理---底层思想就是AOP
l XML
n 引入aop开发包
n 配置事务管理器
n 配置增强<tx:Advice>
n 配置aop
l 注解
n 引入aop开发包
n 配置事务管理器
n 开启注解事务
n 在业务层添加注解
原文地址:https://www.cnblogs.com/ttty/p/10808293.html