基于注解的AOP开发
快速入门
![[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-clZjXQYq-1650892667576)(spring.assets/image-20220425195412772.png)]](https://img-blog.csdnimg.cn/f0d6e202c86d4e1ebd48b619711a1c51.png?x-oss-process=image/watermark,type_d3F5LXplbmhlaQ,shadow_50,text_Q1NETiBA6ay86ay86aqR5aOr,size_19,color_FFFFFF,t_70,g_se,x_16)
新建接口、目标对象类、通知类
package com.taotao.anno;
@SuppressWarnings({"all"})
public interface TargetInterface {
public void save();
}
package com.taotao.anno;
@SuppressWarnings({"all"})
public class Target implements TargetInterface {
@Override
public void save() {
System.out.println("正在存储数据....");
}
}
package com.taotao.anno;
import org.aspectj.lang.ProceedingJoinPoint;
@SuppressWarnings({"all"})
public class MyAspect {
public void before(){
System.out.println("前置增强....");
}
public void afterReturning(){
System.out.println("后置增强.....");
}
public void around(ProceedingJoinPoint pjp) throws Throwable {
System.out.println("环绕前增强...");
Object proceed = pjp.proceed();
System.out.println("环绕后增强...");
}
public void afterThrowing(){
System.out.println("异常抛出增强......");
}
public void after(){
System.out.println("最终增强...");
}
}
将目标类和切面类的对象创建权交给Spring
使用注解@Component(“myAspect”)
package com.taotao.anno;
import org.aspectj.lang.ProceedingJoinPoint;
import org.springframework.stereotype.Component;
@SuppressWarnings({"all"})
@Component("myAspect")
public class MyAspect {
public void before(){
System.out.println("前置增强....");
}
public void afterReturning(){
System.out.println("后置增强.....");
}
public void around(ProceedingJoinPoint pjp) throws Throwable {
System.out.println("环绕前增强...");
Object proceed = pjp.proceed();
System.out.println("环绕后增强...");
}
public void afterThrowing(){
System.out.println("异常抛出增强......");
}
public void after(){
System.out.println("最终增强...");
}
}
@Component(“target”)
package com.taotao.anno;
import org.springframework.stereotype.Component;
@SuppressWarnings({"all"})
@Component("target")
public class Target implements TargetInterface {
@Override
public void save() {
int i = 1 / 0;
System.out.println("正在存储数据....");
}
}
使用注解告知Spring切面类
@Aspect //标注当前MyAspect是一个切面类
注解配置通知方法,并写入切点表达式
package com.taotao.anno;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
import org.springframework.stereotype.Component;
@SuppressWarnings({"all"})
@Component("myAspect")
@Aspect
public class MyAspect {
@Before("execution(* com.taotao.anno.*.*(..))")
public void before(){
System.out.println("前置增强....");
}
public void afterReturning(){
System.out.println("后置增强.....");
}
public void around(ProceedingJoinPoint pjp) throws Throwable {
System.out.println("环绕前增强...");
Object proceed = pjp.proceed();
System.out.println("环绕后增强...");
}
public void afterThrowing(){
System.out.println("异常抛出增强......");
}
public void after(){
System.out.println("最终增强...");
}
}
在切面类中使用注解织入关系
@Before("execution(* com.taotao.anno.*.*(..))")
开启组件扫描和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:aop="http://www.springframework.org/schema/aop"
xmlns:context="http://www.springframework.org/schema/context"
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
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
">
<context:component-scan base-package="com.taotao.anno"/>
<aop:aspectj-autoproxy/>
</beans>
Spring测试类
package com.taotao;
import com.taotao.anno.TargetInterface;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
@SuppressWarnings({"all"})
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("classpath:applicationContext-anno.xml")
public class AnnoTest {
@Autowired
private TargetInterface target;
@Test
public void test1(){
target.save();
}
}
成功测试
![[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-JlKH6l5s-1650892667578)(spring.assets/image-20220425202836500.png)]](https://img-blog.csdnimg.cn/bb903ee4003a46628c8178389994f32c.png?x-oss-process=image/watermark,type_d3F5LXplbmhlaQ,shadow_50,text_Q1NETiBA6ay86ay86aqR5aOr,size_20,color_FFFFFF,t_70,g_se,x_16)
注解配置AOP详解
注解通知的类型
![[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-5R6OA8rf-1650892667580)(spring.assets/image-20220425205259146.png)]](https://img-blog.csdnimg.cn/14515db474cd4ef6b51d655df6a79ce2.png?x-oss-process=image/watermark,type_d3F5LXplbmhlaQ,shadow_50,text_Q1NETiBA6ay86ay86aqR5aOr,size_20,color_FFFFFF,t_70,g_se,x_16)
演示环绕通知
package com.taotao.anno;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.springframework.stereotype.Component;
@SuppressWarnings({"all"})
@Component("myAspect")
@Aspect
public class MyAspect {
public void before(){
System.out.println("前置增强....");
}
public void afterReturning(){
System.out.println("后置增强.....");
}
@Around("execution(* com.taotao.anno.*.*(..))")
public void around(ProceedingJoinPoint pjp) throws Throwable {
System.out.println("环绕前增强...");
Object proceed = pjp.proceed();
System.out.println("环绕后增强...");
}
public void afterThrowing(){
System.out.println("异常抛出增强......");
}
public void after(){
System.out.println("最终增强...");
}
}
成功测试
![[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-ky0TKGQ3-1650892667581)(spring.assets/image-20220425205712559.png)]](https://img-blog.csdnimg.cn/27081559babf421b96a789e0ae7a62e9.png?x-oss-process=image/watermark,type_d3F5LXplbmhlaQ,shadow_50,text_Q1NETiBA6ay86ay86aqR5aOr,size_20,color_FFFFFF,t_70,g_se,x_16)
切点表达式抽取
![[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-Cg4joP4A-1650892667581)(spring.assets/image-20220425205758234.png)]](https://img-blog.csdnimg.cn/db2ff84a9bb74b6c81eebbccc5326aed.png?x-oss-process=image/watermark,type_d3F5LXplbmhlaQ,shadow_50,text_Q1NETiBA6ay86ay86aqR5aOr,size_20,color_FFFFFF,t_70,g_se,x_16)
演示
![[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-JRbcOF9P-1650892667582)(spring.assets/image-20220425210621738.png)]](https://img-blog.csdnimg.cn/5376e46af5464a8a9ce2960f41dcc437.png?x-oss-process=image/watermark,type_d3F5LXplbmhlaQ,shadow_50,text_Q1NETiBA6ay86ay86aqR5aOr,size_20,color_FFFFFF,t_70,g_se,x_16)
package com.taotao.anno;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Pointcut;
import org.springframework.stereotype.Component;
@SuppressWarnings({"all"})
@Component("myAspect")
@Aspect
public class MyAspect {
public void before(){
System.out.println("前置增强....");
}
public void afterReturning(){
System.out.println("后置增强.....");
}
@Around("pointcut()")
public void around(ProceedingJoinPoint pjp) throws Throwable {
System.out.println("环绕前增强...");
Object proceed = pjp.proceed();
System.out.println("环绕后增强...");
}
public void afterThrowing(){
System.out.println("异常抛出增强......");
}
public void after(){
System.out.println("最终增强...");
}
@Pointcut("execution(* com.taotao.anno.*.*(..))")
public void pointcut(){}
}
成功测试
![[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-xaDMm4Lw-1650892667583)(spring.assets/image-20220425210637765.png)]](https://img-blog.csdnimg.cn/2958df24a61b4330bb2efd0eef2f4328.png?x-oss-process=image/watermark,type_d3F5LXplbmhlaQ,shadow_50,text_Q1NETiBA6ay86ay86aqR5aOr,size_20,color_FFFFFF,t_70,g_se,x_16)
|