public abstract class org.springframework.core.io.AbstractFileResolvingResource extends org.springframework.core.io.AbstractResource
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.springframework.core.io.AbstractFileResolvingResource
  super_class: org.springframework.core.io.AbstractResource
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.core.io.AbstractFileResolvingResource this
         0: .line 43
            aload 0 /* this */
            invokespecial org.springframework.core.io.AbstractResource.<init>:()V
            return
        end local 0 // org.springframework.core.io.AbstractFileResolvingResource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/core/io/AbstractFileResolvingResource;

  public boolean exists();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=1
        start local 0 // org.springframework.core.io.AbstractFileResolvingResource this
         0: .line 48
            aload 0 /* this */
            invokevirtual org.springframework.core.io.AbstractFileResolvingResource.getURL:()Ljava/net/URL;
            astore 1 /* url */
        start local 1 // java.net.URL url
         1: .line 49
            aload 1 /* url */
            invokestatic org.springframework.util.ResourceUtils.isFileURL:(Ljava/net/URL;)Z
            ifeq 4
         2: .line 51
            aload 0 /* this */
            invokevirtual org.springframework.core.io.AbstractFileResolvingResource.getFile:()Ljava/io/File;
            invokevirtual java.io.File.exists:()Z
         3: ireturn
         4: .line 55
      StackMap locals: java.net.URL
      StackMap stack:
            aload 1 /* url */
            invokevirtual java.net.URL.openConnection:()Ljava/net/URLConnection;
            astore 2 /* con */
        start local 2 // java.net.URLConnection con
         5: .line 56
            aload 0 /* this */
            aload 2 /* con */
            invokevirtual org.springframework.core.io.AbstractFileResolvingResource.customizeConnection:(Ljava/net/URLConnection;)V
         6: .line 58
            aload 2 /* con */
            instanceof java.net.HttpURLConnection
            ifeq 7
            aload 2 /* con */
            checkcast java.net.HttpURLConnection
            goto 8
      StackMap locals: java.net.URLConnection
      StackMap stack:
         7: aconst_null
         8: .line 57
      StackMap locals:
      StackMap stack: java.net.HttpURLConnection
            astore 3 /* httpCon */
        start local 3 // java.net.HttpURLConnection httpCon
         9: .line 59
            aload 3 /* httpCon */
            ifnull 15
        10: .line 60
            aload 3 /* httpCon */
            invokevirtual java.net.HttpURLConnection.getResponseCode:()I
            istore 4 /* code */
        start local 4 // int code
        11: .line 61
            iload 4 /* code */
            sipush 200
            if_icmpne 13
        12: .line 62
            iconst_1
            ireturn
        13: .line 64
      StackMap locals: java.net.HttpURLConnection int
      StackMap stack:
            iload 4 /* code */
            sipush 404
            if_icmpne 15
        14: .line 65
            iconst_0
            ireturn
        end local 4 // int code
        15: .line 68
      StackMap locals:
      StackMap stack:
            aload 2 /* con */
            invokevirtual java.net.URLConnection.getContentLengthLong:()J
            lconst_0
            lcmp
            ifle 17
        16: .line 69
            iconst_1
            ireturn
        17: .line 71
      StackMap locals:
      StackMap stack:
            aload 3 /* httpCon */
            ifnull 20
        18: .line 73
            aload 3 /* httpCon */
            invokevirtual java.net.HttpURLConnection.disconnect:()V
        19: .line 74
            iconst_0
            ireturn
        20: .line 78
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.springframework.core.io.AbstractFileResolvingResource.getInputStream:()Ljava/io/InputStream;
            invokevirtual java.io.InputStream.close:()V
        21: .line 79
            iconst_1
            ireturn
        end local 3 // java.net.HttpURLConnection httpCon
        end local 2 // java.net.URLConnection con
        end local 1 // java.net.URL url
        22: .line 83
      StackMap locals: org.springframework.core.io.AbstractFileResolvingResource
      StackMap stack: java.io.IOException
            pop
        23: .line 84
            iconst_0
            ireturn
        end local 0 // org.springframework.core.io.AbstractFileResolvingResource this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   24     0     this  Lorg/springframework/core/io/AbstractFileResolvingResource;
            1   22     1      url  Ljava/net/URL;
            5   22     2      con  Ljava/net/URLConnection;
            9   22     3  httpCon  Ljava/net/HttpURLConnection;
           11   15     4     code  I
      Exception table:
        from    to  target  type
           0     3      22  Class java.io.IOException
           4    12      22  Class java.io.IOException
          13    14      22  Class java.io.IOException
          15    16      22  Class java.io.IOException
          17    19      22  Class java.io.IOException
          20    21      22  Class java.io.IOException

  public boolean isReadable();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=1
        start local 0 // org.springframework.core.io.AbstractFileResolvingResource this
         0: .line 91
            aload 0 /* this */
            invokevirtual org.springframework.core.io.AbstractFileResolvingResource.getURL:()Ljava/net/URL;
            astore 1 /* url */
        start local 1 // java.net.URL url
         1: .line 92
            aload 1 /* url */
            invokestatic org.springframework.util.ResourceUtils.isFileURL:(Ljava/net/URL;)Z
            ifeq 6
         2: .line 94
            aload 0 /* this */
            invokevirtual org.springframework.core.io.AbstractFileResolvingResource.getFile:()Ljava/io/File;
            astore 2 /* file */
        start local 2 // java.io.File file
         3: .line 95
            aload 2 /* file */
            invokevirtual java.io.File.canRead:()Z
            ifeq 4
            aload 2 /* file */
            invokevirtual java.io.File.isDirectory:()Z
            ifne 4
            iconst_1
            ireturn
      StackMap locals: java.net.URL java.io.File
      StackMap stack:
         4: iconst_0
         5: ireturn
        end local 2 // java.io.File file
         6: .line 99
      StackMap locals:
      StackMap stack:
            aload 1 /* url */
            invokevirtual java.net.URL.openConnection:()Ljava/net/URLConnection;
            astore 2 /* con */
        start local 2 // java.net.URLConnection con
         7: .line 100
            aload 0 /* this */
            aload 2 /* con */
            invokevirtual org.springframework.core.io.AbstractFileResolvingResource.customizeConnection:(Ljava/net/URLConnection;)V
         8: .line 101
            aload 2 /* con */
            instanceof java.net.HttpURLConnection
            ifeq 14
         9: .line 102
            aload 2 /* con */
            checkcast java.net.HttpURLConnection
            astore 3 /* httpCon */
        start local 3 // java.net.HttpURLConnection httpCon
        10: .line 103
            aload 3 /* httpCon */
            invokevirtual java.net.HttpURLConnection.getResponseCode:()I
            istore 4 /* code */
        start local 4 // int code
        11: .line 104
            iload 4 /* code */
            sipush 200
            if_icmpeq 14
        12: .line 105
            aload 3 /* httpCon */
            invokevirtual java.net.HttpURLConnection.disconnect:()V
        13: .line 106
            iconst_0
            ireturn
        end local 4 // int code
        end local 3 // java.net.HttpURLConnection httpCon
        14: .line 109
      StackMap locals: java.net.URLConnection
      StackMap stack:
            aload 2 /* con */
            invokevirtual java.net.URLConnection.getContentLengthLong:()J
            lstore 3 /* contentLength */
        start local 3 // long contentLength
        15: .line 110
            lload 3 /* contentLength */
            lconst_0
            lcmp
            ifle 17
        16: .line 111
            iconst_1
            ireturn
        17: .line 113
      StackMap locals: long
      StackMap stack:
            lload 3 /* contentLength */
            lconst_0
            lcmp
            ifne 19
        18: .line 115
            iconst_0
            ireturn
        19: .line 119
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.springframework.core.io.AbstractFileResolvingResource.getInputStream:()Ljava/io/InputStream;
            invokevirtual java.io.InputStream.close:()V
        20: .line 120
            iconst_1
            ireturn
        end local 3 // long contentLength
        end local 2 // java.net.URLConnection con
        end local 1 // java.net.URL url
        21: .line 124
      StackMap locals: org.springframework.core.io.AbstractFileResolvingResource
      StackMap stack: java.io.IOException
            pop
        22: .line 125
            iconst_0
            ireturn
        end local 0 // org.springframework.core.io.AbstractFileResolvingResource this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   23     0           this  Lorg/springframework/core/io/AbstractFileResolvingResource;
            1   21     1            url  Ljava/net/URL;
            3    6     2           file  Ljava/io/File;
            7   21     2            con  Ljava/net/URLConnection;
           10   14     3        httpCon  Ljava/net/HttpURLConnection;
           11   14     4           code  I
           15   21     3  contentLength  J
      Exception table:
        from    to  target  type
           0     5      21  Class java.io.IOException
           6    13      21  Class java.io.IOException
          14    16      21  Class java.io.IOException
          17    18      21  Class java.io.IOException
          19    20      21  Class java.io.IOException

  public boolean isFile();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.springframework.core.io.AbstractFileResolvingResource this
         0: .line 132
            aload 0 /* this */
            invokevirtual org.springframework.core.io.AbstractFileResolvingResource.getURL:()Ljava/net/URL;
            astore 1 /* url */
        start local 1 // java.net.URL url
         1: .line 133
            aload 1 /* url */
            invokevirtual java.net.URL.getProtocol:()Ljava/lang/String;
            ldc "vfs"
            invokevirtual java.lang.String.startsWith:(Ljava/lang/String;)Z
            ifeq 4
         2: .line 134
            aload 1 /* url */
            invokestatic org.springframework.core.io.AbstractFileResolvingResource$VfsResourceDelegate.getResource:(Ljava/net/URL;)Lorg/springframework/core/io/Resource;
            invokeinterface org.springframework.core.io.Resource.isFile:()Z
         3: ireturn
         4: .line 136
      StackMap locals: java.net.URL
      StackMap stack:
            ldc "file"
            aload 1 /* url */
            invokevirtual java.net.URL.getProtocol:()Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
         5: ireturn
        end local 1 // java.net.URL url
         6: .line 138
      StackMap locals: org.springframework.core.io.AbstractFileResolvingResource
      StackMap stack: java.io.IOException
            pop
         7: .line 139
            iconst_0
            ireturn
        end local 0 // org.springframework.core.io.AbstractFileResolvingResource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/springframework/core/io/AbstractFileResolvingResource;
            1    6     1   url  Ljava/net/URL;
      Exception table:
        from    to  target  type
           0     3       6  Class java.io.IOException
           4     5       6  Class java.io.IOException

  public java.io.File getFile();
    descriptor: ()Ljava/io/File;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.springframework.core.io.AbstractFileResolvingResource this
         0: .line 150
            aload 0 /* this */
            invokevirtual org.springframework.core.io.AbstractFileResolvingResource.getURL:()Ljava/net/URL;
            astore 1 /* url */
        start local 1 // java.net.URL url
         1: .line 151
            aload 1 /* url */
            invokevirtual java.net.URL.getProtocol:()Ljava/lang/String;
            ldc "vfs"
            invokevirtual java.lang.String.startsWith:(Ljava/lang/String;)Z
            ifeq 3
         2: .line 152
            aload 1 /* url */
            invokestatic org.springframework.core.io.AbstractFileResolvingResource$VfsResourceDelegate.getResource:(Ljava/net/URL;)Lorg/springframework/core/io/Resource;
            invokeinterface org.springframework.core.io.Resource.getFile:()Ljava/io/File;
            areturn
         3: .line 154
      StackMap locals: java.net.URL
      StackMap stack:
            aload 1 /* url */
            aload 0 /* this */
            invokevirtual org.springframework.core.io.AbstractFileResolvingResource.getDescription:()Ljava/lang/String;
            invokestatic org.springframework.util.ResourceUtils.getFile:(Ljava/net/URL;Ljava/lang/String;)Ljava/io/File;
            areturn
        end local 1 // java.net.URL url
        end local 0 // org.springframework.core.io.AbstractFileResolvingResource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/springframework/core/io/AbstractFileResolvingResource;
            1    4     1   url  Ljava/net/URL;
    Exceptions:
      throws java.io.IOException

  protected java.io.File getFileForLastModifiedCheck();
    descriptor: ()Ljava/io/File;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // org.springframework.core.io.AbstractFileResolvingResource this
         0: .line 163
            aload 0 /* this */
            invokevirtual org.springframework.core.io.AbstractFileResolvingResource.getURL:()Ljava/net/URL;
            astore 1 /* url */
        start local 1 // java.net.URL url
         1: .line 164
            aload 1 /* url */
            invokestatic org.springframework.util.ResourceUtils.isJarURL:(Ljava/net/URL;)Z
            ifeq 6
         2: .line 165
            aload 1 /* url */
            invokestatic org.springframework.util.ResourceUtils.extractArchiveURL:(Ljava/net/URL;)Ljava/net/URL;
            astore 2 /* actualUrl */
        start local 2 // java.net.URL actualUrl
         3: .line 166
            aload 2 /* actualUrl */
            invokevirtual java.net.URL.getProtocol:()Ljava/lang/String;
            ldc "vfs"
            invokevirtual java.lang.String.startsWith:(Ljava/lang/String;)Z
            ifeq 5
         4: .line 167
            aload 2 /* actualUrl */
            invokestatic org.springframework.core.io.AbstractFileResolvingResource$VfsResourceDelegate.getResource:(Ljava/net/URL;)Lorg/springframework/core/io/Resource;
            invokeinterface org.springframework.core.io.Resource.getFile:()Ljava/io/File;
            areturn
         5: .line 169
      StackMap locals: java.net.URL java.net.URL
      StackMap stack:
            aload 2 /* actualUrl */
            ldc "Jar URL"
            invokestatic org.springframework.util.ResourceUtils.getFile:(Ljava/net/URL;Ljava/lang/String;)Ljava/io/File;
            areturn
        end local 2 // java.net.URL actualUrl
         6: .line 172
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.springframework.core.io.AbstractFileResolvingResource.getFile:()Ljava/io/File;
            areturn
        end local 1 // java.net.URL url
        end local 0 // org.springframework.core.io.AbstractFileResolvingResource this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    7     0       this  Lorg/springframework/core/io/AbstractFileResolvingResource;
            1    7     1        url  Ljava/net/URL;
            3    6     2  actualUrl  Ljava/net/URL;
    Exceptions:
      throws java.io.IOException

  protected boolean isFile(java.net.URI);
    descriptor: (Ljava/net/URI;)Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.core.io.AbstractFileResolvingResource this
        start local 1 // java.net.URI uri
         0: .line 184
            aload 1 /* uri */
            invokevirtual java.net.URI.getScheme:()Ljava/lang/String;
            ldc "vfs"
            invokevirtual java.lang.String.startsWith:(Ljava/lang/String;)Z
            ifeq 3
         1: .line 185
            aload 1 /* uri */
            invokestatic org.springframework.core.io.AbstractFileResolvingResource$VfsResourceDelegate.getResource:(Ljava/net/URI;)Lorg/springframework/core/io/Resource;
            invokeinterface org.springframework.core.io.Resource.isFile:()Z
         2: ireturn
         3: .line 187
      StackMap locals:
      StackMap stack:
            ldc "file"
            aload 1 /* uri */
            invokevirtual java.net.URI.getScheme:()Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
         4: ireturn
         5: .line 189
      StackMap locals:
      StackMap stack: java.io.IOException
            pop
         6: .line 190
            iconst_0
            ireturn
        end local 1 // java.net.URI uri
        end local 0 // org.springframework.core.io.AbstractFileResolvingResource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/springframework/core/io/AbstractFileResolvingResource;
            0    7     1   uri  Ljava/net/URI;
      Exception table:
        from    to  target  type
           0     2       5  Class java.io.IOException
           3     4       5  Class java.io.IOException
    MethodParameters:
      Name  Flags
      uri   

  protected java.io.File getFile(java.net.URI);
    descriptor: (Ljava/net/URI;)Ljava/io/File;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.core.io.AbstractFileResolvingResource this
        start local 1 // java.net.URI uri
         0: .line 200
            aload 1 /* uri */
            invokevirtual java.net.URI.getScheme:()Ljava/lang/String;
            ldc "vfs"
            invokevirtual java.lang.String.startsWith:(Ljava/lang/String;)Z
            ifeq 2
         1: .line 201
            aload 1 /* uri */
            invokestatic org.springframework.core.io.AbstractFileResolvingResource$VfsResourceDelegate.getResource:(Ljava/net/URI;)Lorg/springframework/core/io/Resource;
            invokeinterface org.springframework.core.io.Resource.getFile:()Ljava/io/File;
            areturn
         2: .line 203
      StackMap locals:
      StackMap stack:
            aload 1 /* uri */
            aload 0 /* this */
            invokevirtual org.springframework.core.io.AbstractFileResolvingResource.getDescription:()Ljava/lang/String;
            invokestatic org.springframework.util.ResourceUtils.getFile:(Ljava/net/URI;Ljava/lang/String;)Ljava/io/File;
            areturn
        end local 1 // java.net.URI uri
        end local 0 // org.springframework.core.io.AbstractFileResolvingResource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/springframework/core/io/AbstractFileResolvingResource;
            0    3     1   uri  Ljava/net/URI;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      uri   

  public java.nio.channels.ReadableByteChannel readableChannel();
    descriptor: ()Ljava/nio/channels/ReadableByteChannel;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // org.springframework.core.io.AbstractFileResolvingResource this
         0: .line 216
            aload 0 /* this */
            invokevirtual org.springframework.core.io.AbstractFileResolvingResource.getFile:()Ljava/io/File;
            invokevirtual java.io.File.toPath:()Ljava/nio/file/Path;
            iconst_1
            anewarray java.nio.file.OpenOption
            dup
            iconst_0
            getstatic java.nio.file.StandardOpenOption.READ:Ljava/nio/file/StandardOpenOption;
            aastore
            invokestatic java.nio.channels.FileChannel.open:(Ljava/nio/file/Path;[Ljava/nio/file/OpenOption;)Ljava/nio/channels/FileChannel;
         1: areturn
         2: .line 218
      StackMap locals:
      StackMap stack: java.io.IOException
            pop
         3: .line 220
            aload 0 /* this */
            invokespecial org.springframework.core.io.AbstractResource.readableChannel:()Ljava/nio/channels/ReadableByteChannel;
            areturn
        end local 0 // org.springframework.core.io.AbstractFileResolvingResource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/springframework/core/io/AbstractFileResolvingResource;
      Exception table:
        from    to  target  type
           0     1       2  Class java.io.FileNotFoundException
           0     1       2  Class java.nio.file.NoSuchFileException
    Exceptions:
      throws java.io.IOException

  public long contentLength();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=1
        start local 0 // org.springframework.core.io.AbstractFileResolvingResource this
         0: .line 226
            aload 0 /* this */
            invokevirtual org.springframework.core.io.AbstractFileResolvingResource.getURL:()Ljava/net/URL;
            astore 1 /* url */
        start local 1 // java.net.URL url
         1: .line 227
            aload 1 /* url */
            invokestatic org.springframework.util.ResourceUtils.isFileURL:(Ljava/net/URL;)Z
            ifeq 9
         2: .line 229
            aload 0 /* this */
            invokevirtual org.springframework.core.io.AbstractFileResolvingResource.getFile:()Ljava/io/File;
            astore 2 /* file */
        start local 2 // java.io.File file
         3: .line 230
            aload 2 /* file */
            invokevirtual java.io.File.length:()J
            lstore 3 /* length */
        start local 3 // long length
         4: .line 231
            lload 3 /* length */
            lconst_0
            lcmp
            ifne 8
            aload 2 /* file */
            invokevirtual java.io.File.exists:()Z
            ifne 8
         5: .line 232
            new java.io.FileNotFoundException
            dup
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            invokevirtual org.springframework.core.io.AbstractFileResolvingResource.getDescription:()Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
         6: .line 233
            ldc " cannot be resolved in the file system for checking its content length"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         7: .line 232
            invokespecial java.io.FileNotFoundException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 235
      StackMap locals: java.net.URL java.io.File long
      StackMap stack:
            lload 3 /* length */
            lreturn
        end local 3 // long length
        end local 2 // java.io.File file
         9: .line 239
      StackMap locals:
      StackMap stack:
            aload 1 /* url */
            invokevirtual java.net.URL.openConnection:()Ljava/net/URLConnection;
            astore 2 /* con */
        start local 2 // java.net.URLConnection con
        10: .line 240
            aload 0 /* this */
            aload 2 /* con */
            invokevirtual org.springframework.core.io.AbstractFileResolvingResource.customizeConnection:(Ljava/net/URLConnection;)V
        11: .line 241
            aload 2 /* con */
            invokevirtual java.net.URLConnection.getContentLengthLong:()J
            lreturn
        end local 2 // java.net.URLConnection con
        end local 1 // java.net.URL url
        end local 0 // org.springframework.core.io.AbstractFileResolvingResource this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   12     0    this  Lorg/springframework/core/io/AbstractFileResolvingResource;
            1   12     1     url  Ljava/net/URL;
            3    9     2    file  Ljava/io/File;
            4    9     3  length  J
           10   12     2     con  Ljava/net/URLConnection;
    Exceptions:
      throws java.io.IOException

  public long lastModified();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=1
        start local 0 // org.springframework.core.io.AbstractFileResolvingResource this
         0: .line 247
            aload 0 /* this */
            invokevirtual org.springframework.core.io.AbstractFileResolvingResource.getURL:()Ljava/net/URL;
            astore 1 /* url */
        start local 1 // java.net.URL url
         1: .line 248
            iconst_0
            istore 2 /* fileCheck */
        start local 2 // boolean fileCheck
         2: .line 249
            aload 1 /* url */
            invokestatic org.springframework.util.ResourceUtils.isFileURL:(Ljava/net/URL;)Z
            ifne 3
            aload 1 /* url */
            invokestatic org.springframework.util.ResourceUtils.isJarURL:(Ljava/net/URL;)Z
            ifeq 10
         3: .line 251
      StackMap locals: java.net.URL int
      StackMap stack:
            iconst_1
            istore 2 /* fileCheck */
         4: .line 253
            aload 0 /* this */
            invokevirtual org.springframework.core.io.AbstractFileResolvingResource.getFileForLastModifiedCheck:()Ljava/io/File;
            astore 3 /* fileToCheck */
        start local 3 // java.io.File fileToCheck
         5: .line 254
            aload 3 /* fileToCheck */
            invokevirtual java.io.File.lastModified:()J
            lstore 4 /* lastModified */
        start local 4 // long lastModified
         6: .line 255
            lload 4 /* lastModified */
            lconst_0
            lcmp
            ifgt 7
            aload 3 /* fileToCheck */
            invokevirtual java.io.File.exists:()Z
            ifeq 10
         7: .line 256
      StackMap locals: java.io.File long
      StackMap stack:
            lload 4 /* lastModified */
         8: lreturn
        end local 4 // long lastModified
        end local 3 // java.io.File fileToCheck
         9: .line 259
      StackMap locals: org.springframework.core.io.AbstractFileResolvingResource java.net.URL int
      StackMap stack: java.io.FileNotFoundException
            pop
        10: .line 264
      StackMap locals:
      StackMap stack:
            aload 1 /* url */
            invokevirtual java.net.URL.openConnection:()Ljava/net/URLConnection;
            astore 3 /* con */
        start local 3 // java.net.URLConnection con
        11: .line 265
            aload 0 /* this */
            aload 3 /* con */
            invokevirtual org.springframework.core.io.AbstractFileResolvingResource.customizeConnection:(Ljava/net/URLConnection;)V
        12: .line 266
            aload 3 /* con */
            invokevirtual java.net.URLConnection.getLastModified:()J
            lstore 4 /* lastModified */
        start local 4 // long lastModified
        13: .line 267
            iload 2 /* fileCheck */
            ifeq 17
            lload 4 /* lastModified */
            lconst_0
            lcmp
            ifne 17
            aload 3 /* con */
            invokevirtual java.net.URLConnection.getContentLengthLong:()J
            lconst_0
            lcmp
            ifgt 17
        14: .line 268
            new java.io.FileNotFoundException
            dup
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            invokevirtual org.springframework.core.io.AbstractFileResolvingResource.getDescription:()Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        15: .line 269
            ldc " cannot be resolved in the file system for checking its last-modified timestamp"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        16: .line 268
            invokespecial java.io.FileNotFoundException.<init>:(Ljava/lang/String;)V
            athrow
        17: .line 271
      StackMap locals: java.net.URLConnection long
      StackMap stack:
            lload 4 /* lastModified */
            lreturn
        end local 4 // long lastModified
        end local 3 // java.net.URLConnection con
        end local 2 // boolean fileCheck
        end local 1 // java.net.URL url
        end local 0 // org.springframework.core.io.AbstractFileResolvingResource this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   18     0          this  Lorg/springframework/core/io/AbstractFileResolvingResource;
            1   18     1           url  Ljava/net/URL;
            2   18     2     fileCheck  Z
            5    9     3   fileToCheck  Ljava/io/File;
            6    9     4  lastModified  J
           11   18     3           con  Ljava/net/URLConnection;
           13   18     4  lastModified  J
      Exception table:
        from    to  target  type
           4     8       9  Class java.io.FileNotFoundException
    Exceptions:
      throws java.io.IOException

  protected void customizeConnection(java.net.URLConnection);
    descriptor: (Ljava/net/URLConnection;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.core.io.AbstractFileResolvingResource this
        start local 1 // java.net.URLConnection con
         0: .line 284
            aload 1 /* con */
            invokestatic org.springframework.util.ResourceUtils.useCachesIfNecessary:(Ljava/net/URLConnection;)V
         1: .line 285
            aload 1 /* con */
            instanceof java.net.HttpURLConnection
            ifeq 3
         2: .line 286
            aload 0 /* this */
            aload 1 /* con */
            checkcast java.net.HttpURLConnection
            invokevirtual org.springframework.core.io.AbstractFileResolvingResource.customizeConnection:(Ljava/net/HttpURLConnection;)V
         3: .line 288
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.net.URLConnection con
        end local 0 // org.springframework.core.io.AbstractFileResolvingResource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/springframework/core/io/AbstractFileResolvingResource;
            0    4     1   con  Ljava/net/URLConnection;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      con   

  protected void customizeConnection(java.net.HttpURLConnection);
    descriptor: (Ljava/net/HttpURLConnection;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.core.io.AbstractFileResolvingResource this
        start local 1 // java.net.HttpURLConnection con
         0: .line 298
            aload 1 /* con */
            ldc "HEAD"
            invokevirtual java.net.HttpURLConnection.setRequestMethod:(Ljava/lang/String;)V
         1: .line 299
            return
        end local 1 // java.net.HttpURLConnection con
        end local 0 // org.springframework.core.io.AbstractFileResolvingResource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/springframework/core/io/AbstractFileResolvingResource;
            0    2     1   con  Ljava/net/HttpURLConnection;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      con   
}
SourceFile: "AbstractFileResolvingResource.java"
NestMembers:
  org.springframework.core.io.AbstractFileResolvingResource$VfsResourceDelegate
InnerClasses:
  private VfsResourceDelegate = org.springframework.core.io.AbstractFileResolvingResource$VfsResourceDelegate of org.springframework.core.io.AbstractFileResolvingResource