使用aop进行事务与日志管理

aop有关事务与日志管理

1. 添加约束

在spring配置文件中加入有关的事务与aop头部约束

	xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:aop="http://www.springframework.org/schema/aop"
	http://www.springframework.org/schema/tx
    http://www.springframework.org/schema/tx/spring-tx.xsd
	http://www.springframework.org/schema/aop
    http://www.springframework.org/schema/aop/spring-aop.xsd

2. 事务管理

2.1 事务管理bean

	<!--添加事务管理bean,注入定义的数据源datasource-->
    "transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
        "dataSource" ref="dataSource" />
    </bean>

2.2 配置事务通知

	<!--配置事务通知-->
    "txAdvice" transaction-manager="transactionManager">
        
            <!--为对应的方法配置需要的传播特性与隔离级别-->
            "add*" propagation="REQUIRED" isolation="DEFAULT"/>
            "delete*" propagation="REQUIRED"/>
            "update*" propagation="REQUIRED"/>
            "get*" read-only="true"/>
            "*" propagation="REQUIRED"/>
        </tx:attributes>
    </tx:advice>

2.3 使用aop进行事务织入

	
        <!--定义aop切入点-->
        "txPointcut" expression="execution(public * gsly.fun.dao.*.* (..))"/>
        <!--事务管理通知-->
        -ref="txAdvice" pointcut-ref="txPointcut"/>
    </aop:config>

之后再匹配的方法执行时,就会进行事务的管理

3. 日志管理

3.1 编写日志扩展类

	public class MyLogger {
     
	   public void before(){
     
	       System.out.println("方法执行前---------------------------------->");
	   }
	}

3.2 注入MyLogger

	<!--注入日志输出类-->
    "myLogger" class="gsly.fun.config.MyLogger"/>

3.3 使用aop进行日志织入

	<!--配置aop织入事务-->
    
        <!--切入点-->
        "txPointcut" expression="execution(* gsly.fun.dao.*.* (..))"/>
        <!--切面类-->
        "myLogger">
            "before" pointcut-ref="txPointcut"/>
        </aop:aspect>
    </aop:config>

你可能感兴趣的:(spring,aop,java)