public interface org.springframework.web.bind.annotation.RequestMapping extends java.lang.annotation.Annotation
  minor version: 0
  major version: 59
  flags: flags: (0x2601) ACC_PUBLIC, ACC_INTERFACE, ACC_ABSTRACT, ACC_ANNOTATION
  this_class: org.springframework.web.bind.annotation.RequestMapping
  super_class: java.lang.Object
{
  public abstract java.lang.String name();
    descriptor: ()Ljava/lang/String;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    AnnotationDefault: ""

  public abstract java.lang.String[] value();
    descriptor: ()[Ljava/lang/String;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    AnnotationDefault: {}
    RuntimeVisibleAnnotations: 
      org.springframework.core.annotation.AliasFor(value = "path")

  public abstract java.lang.String[] path();
    descriptor: ()[Ljava/lang/String;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    AnnotationDefault: {}
    RuntimeVisibleAnnotations: 
      org.springframework.core.annotation.AliasFor(value = "value")

  public abstract org.springframework.web.bind.annotation.RequestMethod[] method();
    descriptor: ()[Lorg/springframework/web/bind/annotation/RequestMethod;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    AnnotationDefault: {}

  public abstract java.lang.String[] params();
    descriptor: ()[Ljava/lang/String;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    AnnotationDefault: {}

  public abstract java.lang.String[] headers();
    descriptor: ()[Ljava/lang/String;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    AnnotationDefault: {}

  public abstract java.lang.String[] consumes();
    descriptor: ()[Ljava/lang/String;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    AnnotationDefault: {}

  public abstract java.lang.String[] produces();
    descriptor: ()[Ljava/lang/String;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    AnnotationDefault: {}
}
SourceFile: "RequestMapping.java"
    RuntimeVisibleAnnotations: 
      java.lang.annotation.Target(value = {java.lang.annotation.ElementType.METHOD:Ljava/lang/annotation/ElementType;, java.lang.annotation.ElementType.TYPE:Ljava/lang/annotation/ElementType;})
      java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME:Ljava/lang/annotation/RetentionPolicy;)
      java.lang.annotation.Documented()
      org.springframework.web.bind.annotation.Mapping()