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
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/aop
http://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("环绕后 ");
}
}
你适合学Java吗?4大专业测评方法
代码逻辑 吸收能力 技术学习能力 综合素质
先测评确定适合在学习