更新時(shí)間:2022-10-26 09:33:13 來(lái)源:動(dòng)力節(jié)點(diǎn) 瀏覽1994次
1.使用Spring的API接口(主要是SpringAPI接口實(shí)現(xiàn))
2.自定義實(shí)現(xiàn)AOP(主要是切面定義,自定義類(lèi))
3.使用注解實(shí)現(xiàn)
<?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>-->
<!--注冊(cè)成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>-->
<!--<!– 需要一個(gè)切入點(diǎn),即我們需要在哪個(gè)地方執(zhí)行方法 exe: 返回值 類(lèi)名 方法名 參數(shù)–>-->
<!-- <aop:pointcut id="pointcut" expression="execution(* com.bing.service.UserServiceImpl.*(..))"/>-->
<!-- <!– 執(zhí)行環(huán)繞增加–>-->
<!--<!–把log類(lèi)切入到pointcut方法上面–>-->
<!-- <aop:advisor advice-ref="log" pointcut-ref="pointcut"></aop:advisor>-->
<!-- <aop:advisor advice-ref="afterlog" pointcut-ref="pointcut"></aop:advisor>-->
<!-- </aop:config>-->
<!-- 方式二 自定義類(lèi) 用切面,是一個(gè)類(lèi)-->
<!-- <bean id="diy" class="com.bing.diy.DiyPointCut"/>-->
<!-- <aop:config>-->
<!--<!– 自定義切面, 引入diy類(lèi)–>-->
<!-- <aop:aspect ref="diy" >-->
<!-- <aop:pointcut id="point" expression="execution(* com.bing.service.UserServiceImpl.*(..))"/>-->
<!-- <!–有切面類(lèi)就有通知了,就是有方法了–>-->
<!-- <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>
<!-- 開(kāi)啟注解支持 自動(dòng)代理-->
<aop:aspectj-autoproxy></aop:aspectj-autoproxy>
</beans>
//方法一、二
package com.bing.diy;
public class DiyPointCut {
public void before(){
System.out.println("執(zhí)行前");
}
public void after(){
System.out.println("執(zhí)行后");
}
}
//方法三(注解)
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;
//使用注解直接將其類(lèi)標(biāo)記成切面
@Aspect
public class AnnotationPointCut {
//Before里面寫(xiě)切入點(diǎn)
@Before("execution(* com.bing.service.UserServiceImpl.*(..))")
public void before(){
System.out.println("方法執(zhí)行前");
}
@After("execution(* com.bing.service.UserServiceImpl.*(..))")
public void after(){
System.out.println("方法執(zhí)行后");
}
//在環(huán)繞增強(qiáng)中,我們可以給定一個(gè)參數(shù),代表我們要處理切入的點(diǎn)
@Around("execution(* com.bing.service.UserServiceImpl.*(..))")
public void around(ProceedingJoinPoint proceedingJoinPoint) throws Throwable {
System.out.println("環(huán)繞前");
//執(zhí)行方法,過(guò)濾
Object proceed = proceedingJoinPoint.proceed();
System.out.println("環(huán)繞后 ");
}
}
0基礎(chǔ) 0學(xué)費(fèi) 15天面授
有基礎(chǔ) 直達(dá)就業(yè)
業(yè)余時(shí)間 高薪轉(zhuǎn)行
工作1~3年,加薪神器
工作3~5年,晉升架構(gòu)
提交申請(qǐng)后,顧問(wèn)老師會(huì)電話(huà)與您溝通安排學(xué)習(xí)