1
2
3
4
5
6
7
8
9
10
11
12
13
| package com.app.aspect;
|
| import java.lang.annotation.*;
|
| /**
| * 自定义注解类
| */
| @Target(ElementType.METHOD) //注解放置的目标位置,METHOD是可注解在方法级别上
| @Retention(RetentionPolicy.RUNTIME) //注解在哪个阶段执行
| @Documented //生成文档
| public @interface MyLog {
| String value() default "";
| }
|
|