Spring源码分析
EchoByCode
这个作者很懒,什么都没留下…
展开
-
Spring源码阅读总结-03-ResourceLoader资源加载器-03
1.1 ResourcePatternResolverResourceLoader 的 Resource getResource(String location),每次只能根据 location 返回一个 Resource 。ResourcePatternResolver 是 ResourceLoader 的扩展,它支持根据指定的资源路径匹配模式每次返回多个 Resource 实例org.springframework.core.io.support;// ResourceLoader 的扩展p原创 2022-01-25 23:45:00 · 232 阅读 · 0 评论 -
Spring源码阅读总结-03-ResourceLoader资源加载器-02
1.1 FileSystemResourceLoaderorg.springframework.core.io.FileSystemResourceLoader继承 DefaultResourceLoader重写了 DefaultResourceLoader.getResourceByPath(String) 方法,使之从文件系统加载资源并以 FileSystemResource 类型返回public class FileSystemResourceLoader extends DefaultRe原创 2022-01-25 23:30:00 · 321 阅读 · 0 评论 -
Spring源码阅读总结-03-ResourceLoader资源加载器-01
1.1 ResourceLoader方法:public interface ResourceLoader { // classPath 路径 String CLASSPATH_URL_PREFIX = ResourceUtils.CLASSPATH_URL_PREFIX; // 根据路径返回资源对象 Resource getResource(String location); // 返回 ClassLoader 实例 @Nullable ClassLoader getClassLoader(原创 2022-01-25 17:25:58 · 359 阅读 · 0 评论 -
Spring源码阅读总结-02-Resource接口以及其子类AbstractResource分析
1、前言由于我们在使用Spring进行开发的时候,是通过定义相对应的xml文件来定义Bean信息、集成其他的框架.所以先介绍我们定义的配置文件是如何被加载的.2、Resource:定义了统一的资源org.springframework.core.io.Resource 为 Spring 框架所有资源的抽象和访问接口,继承org.springframework.core.io.InputStreamSource 接口.作为所有资源的统一抽象接口.Resource 定义了一些通用的方法,由子类 Ab原创 2022-01-24 21:26:07 · 301 阅读 · 0 评论 -
Spring源码阅读总结-01-Bean创建的流程分析
1、Bean创建的流程分析图2、下一章节开始详细分析原创 2022-01-24 20:37:04 · 137 阅读 · 0 评论