SpingAOP
AOP简介
AOP:Aspect Oriented Programming,面向切面编程,利用一种称为“横切”的技术,剖开对象内部,并将公共行为封装到可重用模块,从而减少重复代码,降低耦合。
AOP术语: 通知(Advice) 连接点(Join point) 切点(Poincut) 切面(Aspect) 织入(Weaving)
切面是指封装横切到系统功能的类,包含通知和切点 ;切点定义切面插入在哪些方法上,确定切面使用范围 ;通知定义了切点处所要执行的程序代码以及执行时机 ;连接点是在应用执行过程中满足切点范围的具体的点 ;织入是把切面插入到目标对象上。
通知根据通知的时机区分有五种类型:1.前置通知,使用aop:before标签,在方法之前执行 ;2.后置通知,使用aop:after标签,在方法之后执行,无论方法内部是否抛出异常; 3.后置返回通知,使用aop:after-returning标签,在方法之后执行并且方法内部不能抛出异常;4. 后置异常通知,使用aop:after-throwing标签,在方法内部抛出异常时执行 ;5.环绕通知,使用aop:around标签,在方法之前和之后都执行。
SpringAop的使用:
1.添加Spring配置文件的头部
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop.xsd">
2.在Spring配置文件中加入AOP切面配置
<!-- AOP配置根节点 -->
<aop:config>
<!-- 定义切点 -->
<aop:pointcut expression="execution(* service.*.*(..))"
id="pointcut" />
<!-- 定义切面 -->
<aop:aspect ref="logService">
<!-- 定义前置通知 -->
<aop:before pointcut-ref="pointcut" method="writeLog" />
</aop:aspect>
</aop:config>
Spring的事物管理
什么是Spring的事务管理?
在实际开发中,操作数据库时都会涉及到事务管理问题,为此Spring提供了专门用于事务处理的API。Spring的事务管理简化了传统的事务管理流程,并且在一定程度上减少了开发者的工作量。
基于XML方式的声明式事务
步骤1:添加事务管理器组件
在applicationContext.xml中配置一个事务管理器组件,提供对事务处理的全面支持和统一管理
<!--定义事务管理器 -->
<bean id="txManager"
class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource" />
</bean>
步骤2:使用<tx:advice>标签配置事务规则
因为要用到tx标签配置事务,需要修改applicationContext.xml文件头
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop.xsd
http://www.springframework.org/schema/tx
https://www.springframework.org/schema/tx/spring-tx.xsd">
使用<tx:advice>标签进一步对事务管理器配置事务规则
<!-- 配置事务规则 -->
<tx:advice id="txAdvice" transaction-manager="txManager">
<tx:attributes>
<!-- 定义哪些方法需要进行事务处理,*表示任意字符 -->
<tx:method name="find*" propagation="SUPPORTS" read-only="true"/>
<tx:method name="add*" propagation="REQUIRED"/>
<tx:method name="del*" propagation="REQUIRED"/>
<tx:method name="update*" propagation="REQUIRED"/>
<tx:method name="moneyTransfer" propagation="REQUIRED"/>
</tx:attributes>
</tx:advice>
步骤3:使用<aop:config>配置事务切面
使用<aop:config>标签配置事务切面,并应用事务规则
<!-- 定义切面 -->
<aop:config>
<!-- 定义切点范围 -->
<aop:pointcut expression="execution(* service.*.*(..))" id="pointcut"/>
<!-- 应用事务规则 -->
<aop:advisor advice-ref="txAdvice" pointcut-ref="pointcut"/>
</aop:config>
基于注解方式的声明式事务
步骤1:配置事务管理器
在applicationContext.xml中配置一个事务管理器组件,提供对事务处理的全面支持和统一管理
<!--定义事务管理器 -->
<bean id="txManager"
class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource" />
</bean>
步骤2:注册事务注解驱动
在applicationContext.xml中添加对注解配置事务的支持
<!-- 注册事务注解驱动 -->
<tx:annotation-driven transaction-manager="txManager"/>
步骤3:注册事务注解驱动
在需要事务管理的类或方法上使用@Transactional注解
@Transactional
public String moneyTransfer(String accountA, String accountB, double money) {
//业务逻辑代码
}