public class org.springframework.core.env.PropertySourcesPropertyResolver extends org.springframework.core.env.AbstractPropertyResolver
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.springframework.core.env.PropertySourcesPropertyResolver
  super_class: org.springframework.core.env.AbstractPropertyResolver
{
  private final org.springframework.core.env.PropertySources propertySources;
    descriptor: Lorg/springframework/core/env/PropertySources;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()

  public void <init>(org.springframework.core.env.PropertySources);
    descriptor: (Lorg/springframework/core/env/PropertySources;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.core.env.PropertySourcesPropertyResolver this
        start local 1 // org.springframework.core.env.PropertySources propertySources
         0: .line 42
            aload 0 /* this */
            invokespecial org.springframework.core.env.AbstractPropertyResolver.<init>:()V
         1: .line 43
            aload 0 /* this */
            aload 1 /* propertySources */
            putfield org.springframework.core.env.PropertySourcesPropertyResolver.propertySources:Lorg/springframework/core/env/PropertySources;
         2: .line 44
            return
        end local 1 // org.springframework.core.env.PropertySources propertySources
        end local 0 // org.springframework.core.env.PropertySourcesPropertyResolver this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    3     0             this  Lorg/springframework/core/env/PropertySourcesPropertyResolver;
            0    3     1  propertySources  Lorg/springframework/core/env/PropertySources;
    RuntimeVisibleParameterAnnotations: 
      0:
        org.springframework.lang.Nullable()
    MethodParameters:
                 Name  Flags
      propertySources  

  public boolean containsProperty(java.lang.String);
    descriptor: (Ljava/lang/String;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.springframework.core.env.PropertySourcesPropertyResolver this
        start local 1 // java.lang.String key
         0: .line 49
            aload 0 /* this */
            getfield org.springframework.core.env.PropertySourcesPropertyResolver.propertySources:Lorg/springframework/core/env/PropertySources;
            ifnull 6
         1: .line 50
            aload 0 /* this */
            getfield org.springframework.core.env.PropertySourcesPropertyResolver.propertySources:Lorg/springframework/core/env/PropertySources;
            invokeinterface org.springframework.core.env.PropertySources.iterator:()Ljava/util/Iterator;
            astore 3
            goto 5
      StackMap locals: org.springframework.core.env.PropertySourcesPropertyResolver java.lang.String top java.util.Iterator
      StackMap stack:
         2: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.springframework.core.env.PropertySource
            astore 2 /* propertySource */
        start local 2 // org.springframework.core.env.PropertySource propertySource
         3: .line 51
            aload 2 /* propertySource */
            aload 1 /* key */
            invokevirtual org.springframework.core.env.PropertySource.containsProperty:(Ljava/lang/String;)Z
            ifeq 5
         4: .line 52
            iconst_1
            ireturn
        end local 2 // org.springframework.core.env.PropertySource propertySource
         5: .line 50
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         6: .line 56
      StackMap locals: org.springframework.core.env.PropertySourcesPropertyResolver java.lang.String
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // java.lang.String key
        end local 0 // org.springframework.core.env.PropertySourcesPropertyResolver this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    7     0            this  Lorg/springframework/core/env/PropertySourcesPropertyResolver;
            0    7     1             key  Ljava/lang/String;
            3    5     2  propertySource  Lorg/springframework/core/env/PropertySource<*>;
    MethodParameters:
      Name  Flags
      key   

  public java.lang.String getProperty(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.springframework.core.env.PropertySourcesPropertyResolver this
        start local 1 // java.lang.String key
         0: .line 62
            aload 0 /* this */
            aload 1 /* key */
            ldc Ljava/lang/String;
            iconst_1
            invokevirtual org.springframework.core.env.PropertySourcesPropertyResolver.getProperty:(Ljava/lang/String;Ljava/lang/Class;Z)Ljava/lang/Object;
            checkcast java.lang.String
            areturn
        end local 1 // java.lang.String key
        end local 0 // org.springframework.core.env.PropertySourcesPropertyResolver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/core/env/PropertySourcesPropertyResolver;
            0    1     1   key  Ljava/lang/String;
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()
    MethodParameters:
      Name  Flags
      key   

  public <T> T getProperty(java.lang.String, java.lang.Class<T>);
    descriptor: (Ljava/lang/String;Ljava/lang/Class;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.springframework.core.env.PropertySourcesPropertyResolver this
        start local 1 // java.lang.String key
        start local 2 // java.lang.Class targetValueType
         0: .line 68
            aload 0 /* this */
            aload 1 /* key */
            aload 2 /* targetValueType */
            iconst_1
            invokevirtual org.springframework.core.env.PropertySourcesPropertyResolver.getProperty:(Ljava/lang/String;Ljava/lang/Class;Z)Ljava/lang/Object;
            areturn
        end local 2 // java.lang.Class targetValueType
        end local 1 // java.lang.String key
        end local 0 // org.springframework.core.env.PropertySourcesPropertyResolver this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lorg/springframework/core/env/PropertySourcesPropertyResolver;
            0    1     1              key  Ljava/lang/String;
            0    1     2  targetValueType  Ljava/lang/Class<TT;>;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/String;Ljava/lang/Class<TT;>;)TT;
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()
    MethodParameters:
                 Name  Flags
      key              
      targetValueType  

  protected java.lang.String getPropertyAsRawString(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/String;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.springframework.core.env.PropertySourcesPropertyResolver this
        start local 1 // java.lang.String key
         0: .line 74
            aload 0 /* this */
            aload 1 /* key */
            ldc Ljava/lang/String;
            iconst_0
            invokevirtual org.springframework.core.env.PropertySourcesPropertyResolver.getProperty:(Ljava/lang/String;Ljava/lang/Class;Z)Ljava/lang/Object;
            checkcast java.lang.String
            areturn
        end local 1 // java.lang.String key
        end local 0 // org.springframework.core.env.PropertySourcesPropertyResolver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/core/env/PropertySourcesPropertyResolver;
            0    1     1   key  Ljava/lang/String;
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()
    MethodParameters:
      Name  Flags
      key   

  protected <T> T getProperty(java.lang.String, java.lang.Class<T>, );
    descriptor: (Ljava/lang/String;Ljava/lang/Class;Z)Ljava/lang/Object;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=7, args_size=4
        start local 0 // org.springframework.core.env.PropertySourcesPropertyResolver this
        start local 1 // java.lang.String key
        start local 2 // java.lang.Class targetValueType
        start local 3 // boolean resolveNestedPlaceholders
         0: .line 79
            aload 0 /* this */
            getfield org.springframework.core.env.PropertySourcesPropertyResolver.propertySources:Lorg/springframework/core/env/PropertySources;
            ifnull 14
         1: .line 80
            aload 0 /* this */
            getfield org.springframework.core.env.PropertySourcesPropertyResolver.propertySources:Lorg/springframework/core/env/PropertySources;
            invokeinterface org.springframework.core.env.PropertySources.iterator:()Ljava/util/Iterator;
            astore 5
            goto 13
      StackMap locals: org.springframework.core.env.PropertySourcesPropertyResolver java.lang.String java.lang.Class int top java.util.Iterator
      StackMap stack:
         2: aload 5
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.springframework.core.env.PropertySource
            astore 4 /* propertySource */
        start local 4 // org.springframework.core.env.PropertySource propertySource
         3: .line 81
            aload 0 /* this */
            getfield org.springframework.core.env.PropertySourcesPropertyResolver.logger:Lorg/apache/commons/logging/Log;
            invokeinterface org.apache.commons.logging.Log.isTraceEnabled:()Z
            ifeq 7
         4: .line 82
            aload 0 /* this */
            getfield org.springframework.core.env.PropertySourcesPropertyResolver.logger:Lorg/apache/commons/logging/Log;
            new java.lang.StringBuilder
            dup
            ldc "Searching for key '"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* key */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "' in PropertySource '"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         5: .line 83
            aload 4 /* propertySource */
            invokevirtual org.springframework.core.env.PropertySource.getName:()Ljava/lang/String;
            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;
         6: .line 82
            invokeinterface org.apache.commons.logging.Log.trace:(Ljava/lang/Object;)V
         7: .line 85
      StackMap locals: org.springframework.core.env.PropertySourcesPropertyResolver java.lang.String java.lang.Class int org.springframework.core.env.PropertySource java.util.Iterator
      StackMap stack:
            aload 4 /* propertySource */
            aload 1 /* key */
            invokevirtual org.springframework.core.env.PropertySource.getProperty:(Ljava/lang/String;)Ljava/lang/Object;
            astore 6 /* value */
        start local 6 // java.lang.Object value
         8: .line 86
            aload 6 /* value */
            ifnull 13
         9: .line 87
            iload 3 /* resolveNestedPlaceholders */
            ifeq 11
            aload 6 /* value */
            instanceof java.lang.String
            ifeq 11
        10: .line 88
            aload 0 /* this */
            aload 6 /* value */
            checkcast java.lang.String
            invokevirtual org.springframework.core.env.PropertySourcesPropertyResolver.resolveNestedPlaceholders:(Ljava/lang/String;)Ljava/lang/String;
            astore 6 /* value */
        11: .line 90
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 0 /* this */
            aload 1 /* key */
            aload 4 /* propertySource */
            aload 6 /* value */
            invokevirtual org.springframework.core.env.PropertySourcesPropertyResolver.logKeyFound:(Ljava/lang/String;Lorg/springframework/core/env/PropertySource;Ljava/lang/Object;)V
        12: .line 91
            aload 0 /* this */
            aload 6 /* value */
            aload 2 /* targetValueType */
            invokevirtual org.springframework.core.env.PropertySourcesPropertyResolver.convertValueIfNecessary:(Ljava/lang/Object;Ljava/lang/Class;)Ljava/lang/Object;
            areturn
        end local 6 // java.lang.Object value
        end local 4 // org.springframework.core.env.PropertySource propertySource
        13: .line 80
      StackMap locals: org.springframework.core.env.PropertySourcesPropertyResolver java.lang.String java.lang.Class int top java.util.Iterator
      StackMap stack:
            aload 5
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
        14: .line 95
      StackMap locals: org.springframework.core.env.PropertySourcesPropertyResolver java.lang.String java.lang.Class int
      StackMap stack:
            aload 0 /* this */
            getfield org.springframework.core.env.PropertySourcesPropertyResolver.logger:Lorg/apache/commons/logging/Log;
            invokeinterface org.apache.commons.logging.Log.isTraceEnabled:()Z
            ifeq 16
        15: .line 96
            aload 0 /* this */
            getfield org.springframework.core.env.PropertySourcesPropertyResolver.logger:Lorg/apache/commons/logging/Log;
            new java.lang.StringBuilder
            dup
            ldc "Could not find key '"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* key */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "' in any property source"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokeinterface org.apache.commons.logging.Log.trace:(Ljava/lang/Object;)V
        16: .line 98
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 3 // boolean resolveNestedPlaceholders
        end local 2 // java.lang.Class targetValueType
        end local 1 // java.lang.String key
        end local 0 // org.springframework.core.env.PropertySourcesPropertyResolver this
      LocalVariableTable:
        Start  End  Slot                       Name  Signature
            0   17     0                       this  Lorg/springframework/core/env/PropertySourcesPropertyResolver;
            0   17     1                        key  Ljava/lang/String;
            0   17     2            targetValueType  Ljava/lang/Class<TT;>;
            0   17     3  resolveNestedPlaceholders  Z
            3   13     4             propertySource  Lorg/springframework/core/env/PropertySource<*>;
            8   13     6                      value  Ljava/lang/Object;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/String;Ljava/lang/Class<TT;>;Z)TT;
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()
    MethodParameters:
                           Name  Flags
      key                        
      targetValueType            
      resolveNestedPlaceholders  

  protected void logKeyFound(java.lang.String, org.springframework.core.env.PropertySource<?>, );
    descriptor: (Ljava/lang/String;Lorg/springframework/core/env/PropertySource;Ljava/lang/Object;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.springframework.core.env.PropertySourcesPropertyResolver this
        start local 1 // java.lang.String key
        start local 2 // org.springframework.core.env.PropertySource propertySource
        start local 3 // java.lang.Object value
         0: .line 114
            aload 0 /* this */
            getfield org.springframework.core.env.PropertySourcesPropertyResolver.logger:Lorg/apache/commons/logging/Log;
            invokeinterface org.apache.commons.logging.Log.isDebugEnabled:()Z
            ifeq 4
         1: .line 115
            aload 0 /* this */
            getfield org.springframework.core.env.PropertySourcesPropertyResolver.logger:Lorg/apache/commons/logging/Log;
            new java.lang.StringBuilder
            dup
            ldc "Found key '"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* key */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "' in PropertySource '"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 2 /* propertySource */
            invokevirtual org.springframework.core.env.PropertySource.getName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         2: .line 116
            ldc "' with value of type "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 3 /* value */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         3: .line 115
            invokeinterface org.apache.commons.logging.Log.debug:(Ljava/lang/Object;)V
         4: .line 118
      StackMap locals:
      StackMap stack:
            return
        end local 3 // java.lang.Object value
        end local 2 // org.springframework.core.env.PropertySource propertySource
        end local 1 // java.lang.String key
        end local 0 // org.springframework.core.env.PropertySourcesPropertyResolver this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    5     0            this  Lorg/springframework/core/env/PropertySourcesPropertyResolver;
            0    5     1             key  Ljava/lang/String;
            0    5     2  propertySource  Lorg/springframework/core/env/PropertySource<*>;
            0    5     3           value  Ljava/lang/Object;
    Signature: (Ljava/lang/String;Lorg/springframework/core/env/PropertySource<*>;Ljava/lang/Object;)V
    MethodParameters:
                Name  Flags
      key             
      propertySource  
      value           
}
SourceFile: "PropertySourcesPropertyResolver.java"