1
2
3
4
5
6
7
8
9
10
11
12
13
| package com.javaweb.applicationEvent;
|
| import java.lang.annotation.*;
|
| /**
| * 系统事件注解
| */
| @Documented
| @Retention(RetentionPolicy.RUNTIME)
| @Target(ElementType.TYPE)
| public @interface ApplicationEvent {
| ApplicationEventDefined[] value(); //事件名称
| }
|
|