RepeatSubmit.java 278 B

123456789101112131415161718
  1. package com.zhongzheng.common.annotation;
  2. import java.lang.annotation.*;
  3. /**
  4. * 自定义注解防止表单重复提交
  5. *
  6. * @author zhongzheng
  7. *
  8. */
  9. @Inherited
  10. @Target(ElementType.METHOD)
  11. @Retention(RetentionPolicy.RUNTIME)
  12. @Documented
  13. public @interface RepeatSubmit
  14. {
  15. }