public class org.springframework.context.annotation.AnnotationBeanNameGenerator implements org.springframework.beans.factory.support.BeanNameGenerator
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.springframework.context.annotation.AnnotationBeanNameGenerator
  super_class: java.lang.Object
{
  private static final java.lang.String COMPONENT_ANNOTATION_CLASSNAME;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: "org.springframework.stereotype.Component"

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.context.annotation.AnnotationBeanNameGenerator this
         0: .line 64
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // org.springframework.context.annotation.AnnotationBeanNameGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/context/annotation/AnnotationBeanNameGenerator;

  public java.lang.String generateBeanName(org.springframework.beans.factory.config.BeanDefinition, org.springframework.beans.factory.support.BeanDefinitionRegistry);
    descriptor: (Lorg/springframework/beans/factory/config/BeanDefinition;Lorg/springframework/beans/factory/support/BeanDefinitionRegistry;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.springframework.context.annotation.AnnotationBeanNameGenerator this
        start local 1 // org.springframework.beans.factory.config.BeanDefinition definition
        start local 2 // org.springframework.beans.factory.support.BeanDefinitionRegistry registry
         0: .line 71
            aload 1 /* definition */
            instanceof org.springframework.beans.factory.annotation.AnnotatedBeanDefinition
            ifeq 4
         1: .line 72
            aload 0 /* this */
            aload 1 /* definition */
            checkcast org.springframework.beans.factory.annotation.AnnotatedBeanDefinition
            invokevirtual org.springframework.context.annotation.AnnotationBeanNameGenerator.determineBeanNameFromAnnotation:(Lorg/springframework/beans/factory/annotation/AnnotatedBeanDefinition;)Ljava/lang/String;
            astore 3 /* beanName */
        start local 3 // java.lang.String beanName
         2: .line 73
            aload 3 /* beanName */
            invokestatic org.springframework.util.StringUtils.hasText:(Ljava/lang/String;)Z
            ifeq 4
         3: .line 75
            aload 3 /* beanName */
            areturn
        end local 3 // java.lang.String beanName
         4: .line 79
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* definition */
            aload 2 /* registry */
            invokevirtual org.springframework.context.annotation.AnnotationBeanNameGenerator.buildDefaultBeanName:(Lorg/springframework/beans/factory/config/BeanDefinition;Lorg/springframework/beans/factory/support/BeanDefinitionRegistry;)Ljava/lang/String;
            areturn
        end local 2 // org.springframework.beans.factory.support.BeanDefinitionRegistry registry
        end local 1 // org.springframework.beans.factory.config.BeanDefinition definition
        end local 0 // org.springframework.context.annotation.AnnotationBeanNameGenerator this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lorg/springframework/context/annotation/AnnotationBeanNameGenerator;
            0    5     1  definition  Lorg/springframework/beans/factory/config/BeanDefinition;
            0    5     2    registry  Lorg/springframework/beans/factory/support/BeanDefinitionRegistry;
            2    4     3    beanName  Ljava/lang/String;
    MethodParameters:
            Name  Flags
      definition  
      registry    

  protected java.lang.String determineBeanNameFromAnnotation(org.springframework.beans.factory.annotation.AnnotatedBeanDefinition);
    descriptor: (Lorg/springframework/beans/factory/annotation/AnnotatedBeanDefinition;)Ljava/lang/String;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=10, args_size=2
        start local 0 // org.springframework.context.annotation.AnnotationBeanNameGenerator this
        start local 1 // org.springframework.beans.factory.annotation.AnnotatedBeanDefinition annotatedDef
         0: .line 89
            aload 1 /* annotatedDef */
            invokeinterface org.springframework.beans.factory.annotation.AnnotatedBeanDefinition.getMetadata:()Lorg/springframework/core/type/AnnotationMetadata;
            astore 2 /* amd */
        start local 2 // org.springframework.core.type.AnnotationMetadata amd
         1: .line 90
            aload 2 /* amd */
            invokeinterface org.springframework.core.type.AnnotationMetadata.getAnnotationTypes:()Ljava/util/Set;
            astore 3 /* types */
        start local 3 // java.util.Set types
         2: .line 91
            aconst_null
            astore 4 /* beanName */
        start local 4 // java.lang.String beanName
         3: .line 92
            aload 3 /* types */
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 6
            goto 16
      StackMap locals: org.springframework.context.annotation.AnnotationBeanNameGenerator org.springframework.beans.factory.annotation.AnnotatedBeanDefinition org.springframework.core.type.AnnotationMetadata java.util.Set java.lang.String top java.util.Iterator
      StackMap stack:
         4: aload 6
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.String
            astore 5 /* type */
        start local 5 // java.lang.String type
         5: .line 93
            aload 2 /* amd */
            aload 5 /* type */
            invokestatic org.springframework.context.annotation.AnnotationConfigUtils.attributesFor:(Lorg/springframework/core/type/AnnotatedTypeMetadata;Ljava/lang/String;)Lorg/springframework/core/annotation/AnnotationAttributes;
            astore 7 /* attributes */
        start local 7 // org.springframework.core.annotation.AnnotationAttributes attributes
         6: .line 94
            aload 7 /* attributes */
            ifnull 16
            aload 0 /* this */
            aload 5 /* type */
            aload 2 /* amd */
            aload 5 /* type */
            invokeinterface org.springframework.core.type.AnnotationMetadata.getMetaAnnotationTypes:(Ljava/lang/String;)Ljava/util/Set;
            aload 7 /* attributes */
            invokevirtual org.springframework.context.annotation.AnnotationBeanNameGenerator.isStereotypeWithNameValue:(Ljava/lang/String;Ljava/util/Set;Ljava/util/Map;)Z
            ifeq 16
         7: .line 95
            aload 7 /* attributes */
            ldc "value"
            invokevirtual org.springframework.core.annotation.AnnotationAttributes.get:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 8 /* value */
        start local 8 // java.lang.Object value
         8: .line 96
            aload 8 /* value */
            instanceof java.lang.String
            ifeq 16
         9: .line 97
            aload 8 /* value */
            checkcast java.lang.String
            astore 9 /* strVal */
        start local 9 // java.lang.String strVal
        10: .line 98
            aload 9 /* strVal */
            invokestatic org.springframework.util.StringUtils.hasLength:(Ljava/lang/String;)Z
            ifeq 16
        11: .line 99
            aload 4 /* beanName */
            ifnull 15
            aload 9 /* strVal */
            aload 4 /* beanName */
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 15
        12: .line 100
            new java.lang.IllegalStateException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Stereotype annotations suggest inconsistent component names: '"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        13: .line 101
            aload 4 /* beanName */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "' versus '"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 9 /* strVal */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "'"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        14: .line 100
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
        15: .line 103
      StackMap locals: org.springframework.context.annotation.AnnotationBeanNameGenerator org.springframework.beans.factory.annotation.AnnotatedBeanDefinition org.springframework.core.type.AnnotationMetadata java.util.Set java.lang.String java.lang.String java.util.Iterator org.springframework.core.annotation.AnnotationAttributes java.lang.Object java.lang.String
      StackMap stack:
            aload 9 /* strVal */
            astore 4 /* beanName */
        end local 9 // java.lang.String strVal
        end local 8 // java.lang.Object value
        end local 7 // org.springframework.core.annotation.AnnotationAttributes attributes
        end local 5 // java.lang.String type
        16: .line 92
      StackMap locals: org.springframework.context.annotation.AnnotationBeanNameGenerator org.springframework.beans.factory.annotation.AnnotatedBeanDefinition org.springframework.core.type.AnnotationMetadata java.util.Set java.lang.String top java.util.Iterator
      StackMap stack:
            aload 6
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
        17: .line 108
            aload 4 /* beanName */
            areturn
        end local 4 // java.lang.String beanName
        end local 3 // java.util.Set types
        end local 2 // org.springframework.core.type.AnnotationMetadata amd
        end local 1 // org.springframework.beans.factory.annotation.AnnotatedBeanDefinition annotatedDef
        end local 0 // org.springframework.context.annotation.AnnotationBeanNameGenerator this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   18     0          this  Lorg/springframework/context/annotation/AnnotationBeanNameGenerator;
            0   18     1  annotatedDef  Lorg/springframework/beans/factory/annotation/AnnotatedBeanDefinition;
            1   18     2           amd  Lorg/springframework/core/type/AnnotationMetadata;
            2   18     3         types  Ljava/util/Set<Ljava/lang/String;>;
            3   18     4      beanName  Ljava/lang/String;
            5   16     5          type  Ljava/lang/String;
            6   16     7    attributes  Lorg/springframework/core/annotation/AnnotationAttributes;
            8   16     8         value  Ljava/lang/Object;
           10   16     9        strVal  Ljava/lang/String;
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()
    MethodParameters:
              Name  Flags
      annotatedDef  

  protected boolean isStereotypeWithNameValue(java.lang.String, java.util.Set<java.lang.String>, java.util.Map<java.lang.String, java.lang.Object>);
    descriptor: (Ljava/lang/String;Ljava/util/Set;Ljava/util/Map;)Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=5, args_size=4
        start local 0 // org.springframework.context.annotation.AnnotationBeanNameGenerator this
        start local 1 // java.lang.String annotationType
        start local 2 // java.util.Set metaAnnotationTypes
        start local 3 // java.util.Map attributes
         0: .line 122
            aload 1 /* annotationType */
            ldc "org.springframework.stereotype.Component"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 5
         1: .line 123
            aload 2 /* metaAnnotationTypes */
            ldc "org.springframework.stereotype.Component"
            invokeinterface java.util.Set.contains:(Ljava/lang/Object;)Z
            ifne 5
         2: .line 124
            aload 1 /* annotationType */
            ldc "javax.annotation.ManagedBean"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 5
         3: .line 125
            aload 1 /* annotationType */
            ldc "javax.inject.Named"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 5
         4: .line 122
            iconst_0
            goto 6
      StackMap locals:
      StackMap stack:
         5: iconst_1
      StackMap locals:
      StackMap stack: int
         6: istore 4 /* isStereotype */
        start local 4 // boolean isStereotype
         7: .line 127
            iload 4 /* isStereotype */
            ifeq 8
            aload 3 /* attributes */
            ifnull 8
            aload 3 /* attributes */
            ldc "value"
            invokeinterface java.util.Map.containsKey:(Ljava/lang/Object;)Z
            ifeq 8
            iconst_1
            ireturn
      StackMap locals: int
      StackMap stack:
         8: iconst_0
            ireturn
        end local 4 // boolean isStereotype
        end local 3 // java.util.Map attributes
        end local 2 // java.util.Set metaAnnotationTypes
        end local 1 // java.lang.String annotationType
        end local 0 // org.springframework.context.annotation.AnnotationBeanNameGenerator this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0    9     0                 this  Lorg/springframework/context/annotation/AnnotationBeanNameGenerator;
            0    9     1       annotationType  Ljava/lang/String;
            0    9     2  metaAnnotationTypes  Ljava/util/Set<Ljava/lang/String;>;
            0    9     3           attributes  Ljava/util/Map<Ljava/lang/String;Ljava/lang/Object;>;
            7    9     4         isStereotype  Z
    Signature: (Ljava/lang/String;Ljava/util/Set<Ljava/lang/String;>;Ljava/util/Map<Ljava/lang/String;Ljava/lang/Object;>;)Z
    RuntimeVisibleParameterAnnotations: 
      0:
      1:
      2:
        org.springframework.lang.Nullable()
    MethodParameters:
                     Name  Flags
      annotationType       
      metaAnnotationTypes  
      attributes           

  protected java.lang.String buildDefaultBeanName(org.springframework.beans.factory.config.BeanDefinition, org.springframework.beans.factory.support.BeanDefinitionRegistry);
    descriptor: (Lorg/springframework/beans/factory/config/BeanDefinition;Lorg/springframework/beans/factory/support/BeanDefinitionRegistry;)Ljava/lang/String;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.springframework.context.annotation.AnnotationBeanNameGenerator this
        start local 1 // org.springframework.beans.factory.config.BeanDefinition definition
        start local 2 // org.springframework.beans.factory.support.BeanDefinitionRegistry registry
         0: .line 138
            aload 0 /* this */
            aload 1 /* definition */
            invokevirtual org.springframework.context.annotation.AnnotationBeanNameGenerator.buildDefaultBeanName:(Lorg/springframework/beans/factory/config/BeanDefinition;)Ljava/lang/String;
            areturn
        end local 2 // org.springframework.beans.factory.support.BeanDefinitionRegistry registry
        end local 1 // org.springframework.beans.factory.config.BeanDefinition definition
        end local 0 // org.springframework.context.annotation.AnnotationBeanNameGenerator this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lorg/springframework/context/annotation/AnnotationBeanNameGenerator;
            0    1     1  definition  Lorg/springframework/beans/factory/config/BeanDefinition;
            0    1     2    registry  Lorg/springframework/beans/factory/support/BeanDefinitionRegistry;
    MethodParameters:
            Name  Flags
      definition  
      registry    

  protected java.lang.String buildDefaultBeanName(org.springframework.beans.factory.config.BeanDefinition);
    descriptor: (Lorg/springframework/beans/factory/config/BeanDefinition;)Ljava/lang/String;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.springframework.context.annotation.AnnotationBeanNameGenerator this
        start local 1 // org.springframework.beans.factory.config.BeanDefinition definition
         0: .line 152
            aload 1 /* definition */
            invokeinterface org.springframework.beans.factory.config.BeanDefinition.getBeanClassName:()Ljava/lang/String;
            astore 2 /* beanClassName */
        start local 2 // java.lang.String beanClassName
         1: .line 153
            aload 2 /* beanClassName */
            ifnull 2
            iconst_1
            goto 3
      StackMap locals: java.lang.String
      StackMap stack:
         2: iconst_0
      StackMap locals:
      StackMap stack: int
         3: ldc "No bean class name set"
            invokestatic org.springframework.util.Assert.state:(ZLjava/lang/String;)V
         4: .line 154
            aload 2 /* beanClassName */
            invokestatic org.springframework.util.ClassUtils.getShortName:(Ljava/lang/String;)Ljava/lang/String;
            astore 3 /* shortClassName */
        start local 3 // java.lang.String shortClassName
         5: .line 155
            aload 3 /* shortClassName */
            invokestatic java.beans.Introspector.decapitalize:(Ljava/lang/String;)Ljava/lang/String;
            areturn
        end local 3 // java.lang.String shortClassName
        end local 2 // java.lang.String beanClassName
        end local 1 // org.springframework.beans.factory.config.BeanDefinition definition
        end local 0 // org.springframework.context.annotation.AnnotationBeanNameGenerator this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    6     0            this  Lorg/springframework/context/annotation/AnnotationBeanNameGenerator;
            0    6     1      definition  Lorg/springframework/beans/factory/config/BeanDefinition;
            1    6     2   beanClassName  Ljava/lang/String;
            5    6     3  shortClassName  Ljava/lang/String;
    MethodParameters:
            Name  Flags
      definition  
}
SourceFile: "AnnotationBeanNameGenerator.java"