标签:owa 基于 开始 div 返回 exe npoi new col
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-aop</artifactId>
</dependency>
import java.lang.annotation.*;
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documentedpublic @interface SysLogger {
String action() default "";
String content() default "";
}
@Aspect
@Component
public class MyNewAspect {
//整个包下的所有
@Pointcut("execution(* com.***.***.controller.*.*(..))")
public void point(){}
//基于注解的切点
//@annotation(com.***.***.annotation.SysLogger)
@Pointcut("@annotation(com.***.***.annotation.SysLogger)")
public void point0(){}
// 期望在某个方法执行前做一些处理,叫做前置通知
@Before(value="point()")
public void begin(JoinPoint joinPoint){
String name =joinPoint.getSignature().getName();
System.out.println(name + "方法开始执行...");
// 添加处理代码
// ...
// 以上是处理代码
}
// 期望在某个方法执行后做一些处理,叫做后置最终通知
@After(value = "point()")
public void end(JoinPoint joinPoint){
String name = joinPoint.getSignature().getName();
System.out.println(name + "方法执行结束...");
// 添加处理代码
// ...
// 以上是处理代码
}
// 期望在某个方法返回时做一些处理,叫做后置返回通知
@AfterReturning(value = "point()" , returning = "result")
public void afterReturning(JoinPoint joinPoint, Object result){
String name = joinPoint.getSignature().getName();
System.out.println(name + "方法返回值为:" + result);
// 添加处理代码
// ...
// 以上是处理代码
}
// 期望在某个方法抛出异常时做一些处理,叫做后置异常通知
@AfterThrowing(value = "point()" , throwing = "e")
public void afterThrowing(JoinPoint joinPoint, Exception e){
String name = joinPoint.getSignature().getName();
System.out.println(name + "方法抛出异常:" + e.getClass().getName());
// 添加处理代码
// ...
// 以上是处理代码
}
// 期望在某个方法执行时做一些处理,叫做环绕通知
// 这个通知功能强大且比较灵活。
@Around("point0()")
public Object around(ProceedingJoinPoint proceedingJoinPoint) throws Throwable{
// 添加处理代码
// ...
// 以上是处理代码
return proceedingJoinPoint.proceed();
}
}
标签:owa 基于 开始 div 返回 exe npoi new col
原文地址:https://www.cnblogs.com/jockming/p/12241158.html