springboot中的5种通知小例子
2021-06-17 04:04
标签:list point cut 方法 -- ati targe cal cat 1.环境搭建 2.切入点表达式 3.前置通知 4.后置通知 5.带有返回值通知 6.异常通知 7.环绕通知 优先级 完整的切面例子 springboot中的5种通知小例子 标签:list point cut 方法 -- ati targe cal cat 原文地址:http://blog.51cto.com/yushiwh/2287386
application.properties文件中配置
#Spring AOP
spring.aop.auto=true
spring.aop.proxy-target-class=true
类上面增加@Aspect标注
/**
* 定义一个方法, 用于声明切入点表达式. 一般地, 该方法中再不需要添入其他的代码.
* 使用 @Pointcut 来声明切入点表达式.
* 后面的其他通知直接使用方法名来引用当前的切入点表达式.
* (..)表示任意参数
*/
@Pointcut("execution(public int com.jztey.omronhealth.service.ArithmeticCalculator.*(..))")
public void declareJointPointExpression() {
}
//声明该方法执行之前执行,前置通知
//直接导入切面点,上面的
@Before("declareJointPointExpression()")
public void beforeMethod(JoinPoint joinPoint) {
String methodName = joinPoint.getSignature().getName();
Object[] args = joinPoint.getArgs();
System.out.println("这是切面开始打印出来的--->The method " + methodName + " begins with " + Arrays.asList(args));
}
//后置通知:在目标方法执行后(无论是否发生异常),执行通知
//在后置通知中还不能访问目标方法的执行的结果,不是在执行方法后调用的
/**
* 这是切面开始打印出来的--->The method add begins with [3, 5]
* 这是切面结束打印出来的--->The method add ends
* 和--->8
*/
@After("declareJointPointExpression()")
public void afterMethod(JoinPoint joinPoint) {
String methodName = joinPoint.getSignature().getName();
System.out.println("这是切面结束打印出来的--->The method " + methodName + " ends");
}
/**
* 带有返回值的切面
* 在方法法正常结束受执行的代码
* 返回通知是可以访问到方法的返回值的!
* 可以使用returning = "result"进行获取后得到
*/
@AfterReturning(value = "declareJointPointExpression()",
returning = "result")
public void afterReturning(JoinPoint joinPoint, Object result) {
String methodName = joinPoint.getSignature().getName();
System.out.println("The method " + methodName + " ends with " + result);
}
/**
* 异常处理切面
* 在目标方法出现异常时会执行的代码.
* 可以访问到异常对象; 且可以指定在出现特定异常时在执行通知代码
*/
@AfterThrowing(value = "declareJointPointExpression()",
throwing = "e")
public void afterThrowing(JoinPoint joinPoint, Exception e) {
String methodName = joinPoint.getSignature().getName();
System.out.println("The method " + methodName + " occurs excetion:" + e);
}
/**
* 环绕切面,一般用的不是很多,类似于动态代理,可以包含前面4种的任意个
* 环绕通知需要携带 ProceedingJoinPoint 类型的参数.
* 环绕通知类似于动态代理的全过程: ProceedingJoinPoint 类型的参数可以决定是否执行目标方法.
* 且环绕通知必须有返回值, 返回值即为目标方法的返回值
*/
/*
@Around("execution(public int com.atguigu.spring.aop.ArithmeticCalculator.*(..))")
public Object aroundMethod(ProceedingJoinPoint pjd){
Object result = null;
String methodName = pjd.getSignature().getName();
try {
//前置通知
System.out.println("The method " + methodName + " begins with " + Arrays.asList(pjd.getArgs()));
//执行目标方法
result = pjd.proceed();
//返回通知
System.out.println("The method " + methodName + " ends with " + result);
} catch (Throwable e) {
//异常通知
System.out.println("The method " + methodName + " occurs exception:" + e);
throw new RuntimeException(e);
}
//后置通知
System.out.println("The method " + methodName + " ends");
return result;
}
*/
/**
* 可以使用 @Order 注解指定切面的优先级, 值越小优先级越高
*/
@Order(2)
//通过添加 @Aspect 注解声明一个 bean 是一个切面!
/**
* 可以使用 @Order 注解指定切面的优先级, 值越小优先级越高
*/
@Order(2)
@Aspect
@Component
@Slf4j
public class LoggingAspect {
/**
* 定义一个方法, 用于声明切入点表达式. 一般地, 该方法中再不需要添入其他的代码.
* 使用 @Pointcut 来声明切入点表达式.
* 后面的其他通知直接使用方法名来引用当前的切入点表达式.
* (..)表示任意参数
*/
@Pointcut("execution(public int com.jztey.omronhealth.service.ArithmeticCalculator.*(..))")
public void declareJointPointExpression() {
}
//声明该方法执行之前执行,前置通知
//直接导入切面点,上面的
@Before("declareJointPointExpression()")
public void beforeMethod(JoinPoint joinPoint) {
String methodName = joinPoint.getSignature().getName();
Object[] args = joinPoint.getArgs();
System.out.println("这是切面开始打印出来的--->The method " + methodName + " begins with " + Arrays.asList(args));
}
//后置通知:在目标方法执行后(无论是否发生异常),执行通知
//在后置通知中还不能访问目标方法的执行的结果,不是在执行方法后调用的
/**
* 这是切面开始打印出来的--->The method add begins with [3, 5]
* 这是切面结束打印出来的--->The method add ends
* 和--->8
*/
@After("declareJointPointExpression()")
public void afterMethod(JoinPoint joinPoint) {
String methodName = joinPoint.getSignature().getName();
System.out.println("这是切面结束打印出来的--->The method " + methodName + " ends");
}
/**
* 带有返回值的切面
* 在方法法正常结束受执行的代码
* 返回通知是可以访问到方法的返回值的!
* 可以使用returning = "result"进行获取后得到
*/
@AfterReturning(value = "declareJointPointExpression()",
returning = "result")
public void afterReturning(JoinPoint joinPoint, Object result) {
String methodName = joinPoint.getSignature().getName();
System.out.println("The method " + methodName + " ends with " + result);
}
/**
* 异常处理切面
* 在目标方法出现异常时会执行的代码.
* 可以访问到异常对象; 且可以指定在出现特定异常时在执行通知代码
*/
@AfterThrowing(value = "declareJointPointExpression()",
throwing = "e")
public void afterThrowing(JoinPoint joinPoint, Exception e) {
String methodName = joinPoint.getSignature().getName();
System.out.println("The method " + methodName + " occurs excetion:" + e);
}
/**
* 环绕切面,一般用的不是很多,类似于动态代理,可以包含前面4种的任意个
* 环绕通知需要携带 ProceedingJoinPoint 类型的参数.
* 环绕通知类似于动态代理的全过程: ProceedingJoinPoint 类型的参数可以决定是否执行目标方法.
* 且环绕通知必须有返回值, 返回值即为目标方法的返回值
*/
/*
@Around("execution(public int com.atguigu.spring.aop.ArithmeticCalculator.*(..))")
public Object aroundMethod(ProceedingJoinPoint pjd){
Object result = null;
String methodName = pjd.getSignature().getName();
try {
//前置通知
System.out.println("The method " + methodName + " begins with " + Arrays.asList(pjd.getArgs()));
//执行目标方法
result = pjd.proceed();
//返回通知
System.out.println("The method " + methodName + " ends with " + result);
} catch (Throwable e) {
//异常通知
System.out.println("The method " + methodName + " occurs exception:" + e);
throw new RuntimeException(e);
}
//后置通知
System.out.println("The method " + methodName + " ends");
return result;
}
*/
}
文章标题:springboot中的5种通知小例子
文章链接:http://soscw.com/index.php/essay/94874.html