硬怼Spring-资源加载(三)

1. Resource

我们来看看Spring对Resource(资源)的描述

1.png

InputStreamSource接口只有一个方法:

public interface InputStreamSource {

    /**
          返回资源的输入流
     */
    InputStream getInputStream() throws IOException;

}

Resource接口中,我们把英语翻译一遍基本上就知道了每个方法的大概作用,Resource接口就是用来描述一个资源对象,比如资源字节有多少,资源的介绍,资源的是否可读等等。源码中有2个方法的代码我不是很熟悉:

第一个方法

/**
     * 资源是否被stream打开了
     * Indicate whether this resource represents a handle with an open stream.
     * If {@code true}, the InputStream cannot be read multiple times,
     * and must be read and closed to avoid resource leaks.
     * <p>Will be {@code false} for typical resource descriptors.
     */
    default boolean isOpen() {
        return false;
    }

代码很简单,第一眼看到default关键字我不是很懂。
Java代码中,default关键字有三个地方出现:

  1. 声明类或者字段时候,如果不添加修饰符,默认是default
  2. switch语句中的default
  3. 接口中可以用default修饰方法

那么接口中使用default有什么作用呢?看下面代码:
定义一个接口,defaultstatic修饰的方法可以有方法体。

public interface Hi {
    default void showName() {
        System.out.println("you are good");
    }
    static void showAA() {
        System.out.println("you are good");
    }
    void sayHi();
}

创建一个类实现上面的接口,默认情况下,我们只需要实现没有方法体的方法编译器就可以通过了。但是defaultstatic修饰的方法我们能否重写?答案是default修饰的方法可以重写,static修饰的方法不能重写。

public class MyHi implements Hi {
    @Override
    public void sayHi() {
        System.out.println("hi kequanjiao");
    }
}

那么defaultstatic修饰的方法有什么作用呢?下面的代码中,static修饰的方法可以直接使用接口Hi调用,default修饰的方法只能通过实现接口类的对象调用。使用default的好处就是我们一般定义了一个接口后不是接口下所有的方法都需要不同的实现,总有一些通用方法,把这些通用方法放在接口中,就可以增加代码可重用性。

public class Main {
    public static void main(String[] args) {
        Hi.showAA();

        MyHi myHi = new MyHi();
        myHi.sayHi();
        myHi.showName();
    }
}

第二个方法:

default ReadableByteChannel readableChannel() throws IOException {
        return Channels.newChannel(getInputStream());
}

看到channel我的第一反应就是nio,为此我又好好的恶补了一波BIO,NIO,AIO。其实不论是什么IO,都离不开理论中的5中IO模型,具体可以看看:
Java 5种IO模型 https://www.jianshu.com/p/5257b540c3e5

2. ResourceLoader

image

资源的类型有这么几种:

  1. URL资源,比如 file:C:/test.txt是文件协议,也可以是http协议,如 http://xxx.com/test.txt
  2. classpath资源,如 classpath:test.txt
  3. 相对资源路径,如 WEB-INF/test.txt
    对于不同的资源,我们就需要不同的加载方法。

ResourceLoader接口定义:


public interface ResourceLoader {

    /** Pseudo URL prefix for loading from the class path: "classpath:". */
    String CLASSPATH_URL_PREFIX = ResourceUtils.CLASSPATH_URL_PREFIX;

    /**
     * 获取资源
     */
    Resource getResource(String location);

    /**
     *  加载资源的classLoader
     */
    @Nullable
    ClassLoader getClassLoader();

}

再看一下ResourceLoader的默认实现DefaultResourceLoader
先看一下构造方法:

public DefaultResourceLoader() {
        this.classLoader = ClassUtils.getDefaultClassLoader();
    }

    /**
     * Create a new DefaultResourceLoader.
     * @param classLoader the ClassLoader to load class path resources with, or {@code null}
     * for using the thread context class loader at the time of actual resource access
     */
    public DefaultResourceLoader(@Nullable ClassLoader classLoader) {
        this.classLoader = classLoader;
    }

两个构造方法,一个让我们传递classLoader,另一个则不需要传递。关于DefaultResourceLoader中的classLoader作用我不是很清楚,这个坑先放在这里。
我们看一下如果不传递classLoader那么由谁来提供:

public static ClassLoader getDefaultClassLoader() {
        ClassLoader cl = null;
        try {
            // 获取当前线程classLoader
            cl = Thread.currentThread().getContextClassLoader();
        }
        catch (Throwable ex) {
            // Cannot access thread context ClassLoader - falling back...
        }
        if (cl == null) {
            // 不能访问当前线程classLoader,使用这个类的classLoader
            // No thread context class loader -> use class loader of this class.
            cl = ClassUtils.class.getClassLoader();
            if (cl == null) {
                // getClassLoader() returning null indicates the bootstrap ClassLoader
                try {
                    // 若还是没有,使用 bootstrap ClassLoader
                    // bootstrap ClassLoader是最开始的类加载器,负责加载java.lang包下的类
                    cl = ClassLoader.getSystemClassLoader();
                }
                catch (Throwable ex) {
                    // Cannot access system ClassLoader - oh well, maybe the caller can live with null...
                }
            }
        }
        return cl;
    }

使用的类加载器顺序是:
当前线程classLoader -> ClassUtils的classLoader -> bootstrap classLoader

DeafultResource中一个主要的方法是:

public Resource getResource(String location) { // 通过location获取资源
        Assert.notNull(location, "Location must not be null");

        // ProtocolResolver 接口只有一个方法,从location解析出Resource
        // Spring 中没有提供 ProtocolResolver 的实现,需要我们自己实现
        for (ProtocolResolver protocolResolver : this.protocolResolvers) {
            Resource resource = protocolResolver.resolve(location, this);
            if (resource != null) {
                return resource;
            }
        }

        if (location.startsWith("/")) {
            // “/”开头,表是资源是相对路径资源 
            // 它返回的Resource类型是 ClassPathContextResource
            return getResourceByPath(location);
        }
        else if (location.startsWith(CLASSPATH_URL_PREFIX)) {
            // “classpath:”开头,表示资源是classpath资源
            // 它返回的Resource类型是 ClassPathResource
            return new ClassPathResource(location.substring(CLASSPATH_URL_PREFIX.length()), getClassLoader());
        }
        else {
            // 上面两者都不是,那么就是URL类资源
            try {
                // Try to parse the location as a URL...
                // 尝试根据url规则进行解析
                URL url = new URL(location);
                return (ResourceUtils.isFileURL(url) ? new FileUrlResource(url) : new UrlResource(url));
            }
            catch (MalformedURLException ex) {
                // No URL -> resolve as resource path.
                // 不是url资源,按照路径解析
                // 返回的Resource类型是 ClassPathContextResource
                return getResourceByPath(location);
            }
        }
    }

3. 进行测试

/**
 * @description: 测试Spring资源与资源加载
 * @author: sanjin
 * @date: 2019/7/6 12:15
 */
public class Main {
    public static void main(String[] args) {
        DefaultResourceLoader resourceLoader = new DefaultResourceLoader();

        // 在 resource 中创建test.txt
        String location01 = "classpath:test.txt";
        Resource resource01 = resourceLoader.getResource(location01);
        InputStream is = null;
        ByteArrayOutputStream baos = null;
        // 可以获取resource01 inputStream 读取资源内容
        try {
            is = resource01.getInputStream();
            baos = new ByteArrayOutputStream();
            byte[] buffer = new byte[1024];
            int len = 0;
            while ((len = is.read(buffer)) != -1) {
                baos.write(buffer,0,len);
            }
            System.out.println(baos.toString());
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            try {
                if (is != null) {
                    is.close();
                }
            } catch (IOException e) {
                e.printStackTrace();
            }
        }


    }
}
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 225,061评论 6 523
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 96,407评论 3 404
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 172,275评论 0 368
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 61,084评论 1 300
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 70,091评论 6 400
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 53,555评论 1 315
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 41,914评论 3 429
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 40,900评论 0 279
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 47,438评论 1 324
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 39,470评论 3 346
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 41,596评论 1 355
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 37,187评论 5 351
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 42,932评论 3 340
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 33,361评论 0 25
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 34,511评论 1 277
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 50,163评论 3 381
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 46,671评论 2 366

推荐阅读更多精彩内容