package com.kmall.admin.annotation; import org.springframework.stereotype.Component; import java.lang.annotation.*; /** * 自定义防重复提交注解 * @author hj * @createDate 2021-04-29 */ @Inherited @Target({ElementType.METHOD}) @Retention(RetentionPolicy.RUNTIME) @Documented @Component public @interface NoRepeatSubmit { /** * 默认时间 默认5秒钟 * @return */ int lockTime() default 5000; }