更新時間:2022-10-26 09:33:13 來源:動力節點 瀏覽1714次
1.使用Spring的API接口(主要是SpringAPI接口實現)
2.自定義實現AOP(主要是切面定義,自定義類)
3.使用注解實現
<?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:p="http://www.springframework.org/schema/p"
xmlns:c="http://www.springframework.org/schema/c"
xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="http://www.springframework.org/schema/beans
https://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/aop
https://www.springframework.org/schema/aop/spring-aop.xsd">
<!-- <bean id="user" class="com.bing.pojo.User" p:name="cb" p:age="23"></bean>-->
<!--注冊成bean-->
<bean id="UserService" class="com.bing.service.UserServiceImpl"></bean>
<bean id="log" class="com.bing.log.Log"></bean>
<bean id="afterlog" class="com.bing.log.AfterLog"></bean>
<!--<!– 方式一:使用原生spring API接口–>-->
<!--<!– 配置aop–>-->
<!-- <aop:config>-->
<!--<!– 需要一個切入點,即我們需要在哪個地方執行方法 exe: 返回值 類名 方法名 參數–>-->
<!-- <aop:pointcut id="pointcut" expression="execution(* com.bing.service.UserServiceImpl.*(..))"/>-->
<!-- <!– 執行環繞增加–>-->
<!--<!–把log類切入到pointcut方法上面–>-->
<!-- <aop:advisor advice-ref="log" pointcut-ref="pointcut"></aop:advisor>-->
<!-- <aop:advisor advice-ref="afterlog" pointcut-ref="pointcut"></aop:advisor>-->
<!-- </aop:config>-->
<!-- 方式二 自定義類 用切面,是一個類-->
<!-- <bean id="diy" class="com.bing.diy.DiyPointCut"/>-->
<!-- <aop:config>-->
<!--<!– 自定義切面, 引入diy類–>-->
<!-- <aop:aspect ref="diy" >-->
<!-- <aop:pointcut id="point" expression="execution(* com.bing.service.UserServiceImpl.*(..))"/>-->
<!-- <!–有切面類就有通知了,就是有方法了–>-->
<!-- <aop:before method="before" pointcut-ref="point"/>-->
<!-- <aop:after method="after" pointcut-ref="point"/>-->
<!-- </aop:aspect>-->
<!-- </aop:config>-->
<!-- 方式三-->
<bean id="annotationPointCut" class="com.bing.diy.AnnotationPointCut"></bean>
<!-- 開啟注解支持 自動代理-->
<aop:aspectj-autoproxy></aop:aspectj-autoproxy>
</beans>
//方法一、二
package com.bing.diy;
public class DiyPointCut {
public void before(){
System.out.println("執行前");
}
public void after(){
System.out.println("執行后");
}
}
//方法三(注解)
package com.bing.diy;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.After;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
//使用注解直接將其類標記成切面
@Aspect
public class AnnotationPointCut {
//Before里面寫切入點
@Before("execution(* com.bing.service.UserServiceImpl.*(..))")
public void before(){
System.out.println("方法執行前");
}
@After("execution(* com.bing.service.UserServiceImpl.*(..))")
public void after(){
System.out.println("方法執行后");
}
//在環繞增強中,我們可以給定一個參數,代表我們要處理切入的點
@Around("execution(* com.bing.service.UserServiceImpl.*(..))")
public void around(ProceedingJoinPoint proceedingJoinPoint) throws Throwable {
System.out.println("環繞前");
//執行方法,過濾
Object proceed = proceedingJoinPoint.proceed();
System.out.println("環繞后 ");
}
}
0基礎 0學費 15天面授
有基礎 直達就業
業余時間 高薪轉行
工作1~3年,加薪神器
工作3~5年,晉升架構
提交申請后,顧問老師會電話與您溝通安排學習