首页 > TAG信息列表 > lockMillisecond

请求防重处理

1、自定义注解 @Target({ElementType.METHOD}) @Retention(RetentionPolicy.RUNTIME) @Documented public @interface NoRepeatSubmit { /** * 默认1s钟以内算重复提交 * @return */ int lockTime() default 1000; } 2、定义切面类 /** * 接口重复调