其他分享
首页 > 其他分享> > XML配置AOP

XML配置AOP

作者:互联网

XML配置AOP

<?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-4.0.xsd
		http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd">

	<context:component-scan base-package="com.atguigu"></context:component-scan>
	
	
	
	<!-- 基于注解的AOP步骤 -->
	<!-- 
		1、将目标类和切面类都加入到ioc容器中 @Component
		2、告诉Spring哪个是切面类 @Aspect
		3、在切面类中使用五个通知注解来配置切面中的这些通知方法都有何时何地运行
	 -->
	 <!-- 开启基于注解的AOP -->
	<!-- <aop:aspectj-autoproxy></aop:aspectj-autoproxy> -->
	
	<!-- 基于注解的AOP -->
	<bean id="myMathCalculator" class="com.atguigu.impl.MyMathCalculator"></bean>
	<bean id="validateAspect" class="com.atguigu.util.ValidateAspect"></bean>
	<bean id="logUtils" class="com.atguigu.util.LogUtils"></bean>
	
	<!-- 需要使用AOP名称空间 -->
	<aop:config>
		<!-- 指定切面:@Aspect order="1" 用来决定先后执行顺序,数值越小越先执行-->
		<aop:aspect ref="validateAspect" order="1">
				<!-- 设置切入点格式 -->
				<aop:pointcut expression="execution(* com.atguigu.impl.*.*(..))" id="myPointcut"/>		
				<!-- 在切面类中配置切面中的这些方法否何时何地运行 -->
				<aop:before method="logStart" pointcut-ref="myPointcut"/>
				<!--  returning="result 用result表示返回值-->
				<aop:after-returning method="logReturn" pointcut-ref="myPointcut" returning="result"/>
				<aop:after method="logEnd" pointcut-ref="myPointcut"/>
				<!-- throwing="exception" 用exception表示异常对象 -->
				<aop:after-throwing method="logException" pointcut-ref="myPointcut" throwing="exception"/>
				<aop:around method="myAround" pointcut-ref="myPointcut"/>
		</aop:aspect>
		<aop:aspect ref="logUtils" order="2">
			<!-- 设置切入点格式 -->
				<aop:pointcut expression="execution(* com.atguigu.impl.*.*(..))" id="myPointcut"/>		
				<!-- 在切面类中配置切面中的这些方法否何时何地运行 -->
				<aop:before method="logStart" pointcut-ref="myPointcut"/>
				<!--  returning="result 用result表示返回值-->
				<aop:after-returning method="logReturn" pointcut-ref="myPointcut" returning="result"/>
				<aop:after method="logEnd" pointcut-ref="myPointcut"/>
				<!-- throwing="exception" 用exception表示异常对象 -->
				<aop:after-throwing method="logException" pointcut-ref="myPointcut" throwing="exception"/>
		</aop:aspect>
	</aop:config>
</beans>

注解:快速方便

XML配置:功能完善,重要的用配置,不重要的用注解。

标签:XML,功能完善,--,配置,AOP,注解
来源: https://blog.csdn.net/weixin_46245201/article/details/116564696