当前位置: 代码迷 >> 综合 >> Spring boot 入门教程-自定义注解
  详细解决方案

Spring boot 入门教程-自定义注解

热度:7   发布时间:2024-02-02 09:47:22.0

 

1.定义注解接口 

@Documented
@Retention(RUNTIME)
@Target(METHOD)
public @interface MyLog {String value() default "";}
@Target(ElementType.TYPE)   //接口、类、枚举、注解
@Target(ElementType.FIELD) //字段、枚举的常量
@Target(ElementType.METHOD) //方法
@Target(ElementType.PARAMETER) //方法参数
@Target(ElementType.CONSTRUCTOR)  //构造函数
@Target(ElementType.LOCAL_VARIABLE)//局部变量
@Target(ElementType.ANNOTATION_TYPE)//注解
@Target(ElementType.PACKAGE) ///包   1.RetentionPolicy.SOURCE —— 这种类型的Annotations只在源代码级别保留,编译时就会被忽略2.RetentionPolicy.CLASS —— 这种类型的Annotations编译时被保留,在class文件中存在,但JVM将会忽略
3.RetentionPolicy.RUNTIME —— 这种类型的Annotations将被JVM保留,所以他们能在运行时被JVM或其他使用反射机制的代码所读取和使用.

2.通过切面来实现注解

 

@Component
@Aspect
public class LogAspect {@Pointcut("@annotation(com.example.config.MyLog)")
private void cut() { }@Around("cut()")
public void advice(ProceedingJoinPoint joinPoint){System.out.println("环绕通知之开始");try {joinPoint.proceed();
} catch (Throwable e) {e.printStackTrace();
}System.out.println("环绕通知之结束");}//当想获得注解里面的属性,可以直接注入改注解@Before("cut()&&@annotation(myLog)")
public void record(JoinPoint joinPoint, MyLog myLog) {System.out.println(myLog.value());}@After("recordLog()")
public void after() {this.printLog("已经记录下操作日志@After 方法执行后");}}

 

2.1 获得注解中的变量 

//当想获得注解里面的属性,可以直接注入改注解@Before("cut()&&@annotation(myLog)")
public void record(JoinPoint joinPoint, MyLog myLog) {System.out.println(myLog.value());}

2.2 注解中的ProceedingJoinPointJoinPoint说明

AspectJ使用org.aspectj.lang.JoinPoint接口表示目标类连接点对象,如果是环绕增强时,使用org.aspectj.lang.ProceedingJoinPoint表示连接点对象,该类是JoinPoint的子接口。任何一个增强方法都可以通过将第一个入参声明为JoinPoint访问到连接点上下文的信息。

这两个接口的主要方法: 

  • JoinPoint  

   

java.lang.Object[] getArgs():获取连接点方法运行时的入参列表; 
Signature getSignature() :获取连接点的方法签名对象; 
java.lang.Object getTarget() :获取连接点所在的目标对象; 
java.lang.Object getThis() :获取代理对象本身; 
  • ProceedingJoinPoint  
ProceedingJoinPoint继承JoinPoint子接口,它新增了两个用于执行连接点方法的方法: 
java.lang.Object proceed() throws java.lang.Throwable:通过反射执行目标对象的连接点处的方法; 
java.lang.Object proceed(java.lang.Object[] args) throws java.lang.Throwable:通过反射执行目标对象连接点处的方法,不过           使用新的入参替换原来的入参。 
  相关解决方案