- package com.steerinfo.dil.annotaion;
- import java.lang.annotation.*;
- /**
- * 请求限制注解,防止更新重复提交
- */
- @Target({ElementType.METHOD, ElementType.TYPE})
- @Retention(RetentionPolicy.RUNTIME)
- @Documented
- public @interface RequestLimit {
- int seconds() default 1;//秒
- int maxCount() default 1;//最大访问次数
- }
|