一、SpringFactoriesLoader 介紹
創(chuàng)新互聯(lián)建站是專(zhuān)業(yè)的合作網(wǎng)站建設(shè)公司,合作接單;提供網(wǎng)站制作、成都網(wǎng)站設(shè)計(jì),網(wǎng)頁(yè)設(shè)計(jì),網(wǎng)站設(shè)計(jì),建網(wǎng)站,PHP網(wǎng)站建設(shè)等專(zhuān)業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進(jìn)行合作網(wǎng)站開(kāi)發(fā)網(wǎng)頁(yè)制作和功能擴(kuò)展;專(zhuān)業(yè)做搜索引擎喜愛(ài)的網(wǎng)站,專(zhuān)業(yè)的做網(wǎng)站團(tuán)隊(duì),希望更多企業(yè)前來(lái)合作!
1.1 SpringFactoriesLoader 簡(jiǎn)介
SpringFactoriesLoader 工廠(chǎng)加載機(jī)制是 Spring 內(nèi)部提供的一個(gè)約定俗成的加載方式,與 java spi 類(lèi)似,只需要在模塊的 META-INF/spring.factories 文件中,以 Properties 類(lèi)型(即 key-value 形式)配置,就可以將相應(yīng)的實(shí)現(xiàn)類(lèi)注入 Spirng 容器中。
Properties 類(lèi)型格式:
key:是全限定名(抽象類(lèi)|接口)
value:是實(shí)現(xiàn),多個(gè)實(shí)現(xiàn)通過(guò) **逗號(hào)** 進(jìn)行分隔
1.2 SpringFactoriesLoader 常用方法
loadFactoryNames
讀取 classpath上 所有的 jar 包中的所有 META-INF/spring.factories屬 性文件,找出其中定義的匹配類(lèi)型 factoryClass 的工廠(chǎng)類(lèi),然后并返回這些工廠(chǎng)類(lèi)的名字列表,注意是包含包名的全限定名。
loadFactories
讀取 classpath 上所有的jar包中的所有 META-INF/spring.factories 屬性文件,找出其中定義的匹配類(lèi)型 factoryClass 的工廠(chǎng)類(lèi),然后創(chuàng)建每個(gè)工廠(chǎng)類(lèi)的對(duì)象/實(shí)例,并返回這些工廠(chǎng)類(lèi)對(duì)象/實(shí)例的列表。
1.3 loadFactories 流程圖
二、SpringFactoriesLoader 源碼解析
2.1 loadFactoryNames 解析
public static ListloadFactoryNames(Class<?> factoryType, @Nullable ClassLoader classLoader) { // 獲取包含包名的工廠(chǎng)類(lèi)名稱(chēng) String factoryTypeName = factoryType.getName(); // 獲取所有配置在 META-INF/spring.factories 文件的值 // 然后獲取指定類(lèi)的實(shí)現(xiàn)類(lèi)名列表 return loadSpringFactories(classLoader).getOrDefault(factoryTypeName, Collections.emptyList()); }
// 默認(rèn)的工廠(chǎng)配置路徑地址,可以存放在多個(gè) JAR 包下 public static final String FACTORIES_RESOURCE_LOCATION = "META-INF/spring.factories"; private static Map> loadSpringFactories(@Nullable ClassLoader classLoader) { // 判斷是否有緩存結(jié)果,如果有直接返回 MultiValueMap result = cache.get(classLoader); if (result != null) { return result; } try { // 掃描 classpath 上所有 JAR 中的文件 META-INF/spring.factories Enumeration urls = (classLoader != null ? classLoader.getResources(FACTORIES_RESOURCE_LOCATION) : ClassLoader.getSystemResources(FACTORIES_RESOURCE_LOCATION)); result = new LinkedMultiValueMap<>(); while (urls.hasMoreElements()) { // 找到的每個(gè) META-INF/spring.factories 文件都是一個(gè) Properties 文件,將其內(nèi)容加載到一個(gè) Properties 對(duì)象然后處理其中的每個(gè)屬性 URL url = urls.nextElement(); UrlResource resource = new UrlResource(url); Properties properties = PropertiesLoaderUtils.loadProperties(resource); for (Map.Entry<?, ?> entry : properties.entrySet()) { // 獲取工廠(chǎng)類(lèi)名稱(chēng)(接口或者抽象類(lèi)的全限定名) String factoryTypeName = ((String) entry.getKey()).trim(); // 將逗號(hào)分割的屬性值逐個(gè)取出,然后放到 結(jié)果result 中去 for (String factoryImplementationName : StringUtils.commaDelimitedListToStringArray((String) entry.getValue())) { result.add(factoryTypeName, factoryImplementationName.trim()); } } } // 將結(jié)果存放到緩存中 cache.put(classLoader, result); return result; } catch (IOException ex) { throw new IllegalArgumentException("Unable to load factories from location [" + FACTORIES_RESOURCE_LOCATION + "]", ex); } }
default V getOrDefault(Object key, V defaultValue) { V v; return (((v = get(key)) != null) || containsKey(key)) ? v : defaultValue; }
2.2 loadFactories 解析
public staticList loadFactories(Class factoryType, @Nullable ClassLoader classLoader) { Assert.notNull(factoryType, "'factoryType' must not be null"); // 如果未指定類(lèi)加載器,則使用默認(rèn)的 ClassLoader classLoaderToUse = classLoader; if (classLoaderToUse == null) { classLoaderToUse = SpringFactoriesLoader.class.getClassLoader(); } // 獲取指定工廠(chǎng)名稱(chēng)列表 List factoryImplementationNames = loadFactoryNames(factoryType, classLoaderToUse); // 如果記錄器Trace跟蹤激活的話(huà),將工廠(chǎng)名稱(chēng)列表輸出 if (logger.isTraceEnabled()) { logger.trace("Loaded [" + factoryType.getName() + "] names: " + factoryImplementationNames); } // 創(chuàng)建結(jié)果集 List result = new ArrayList<>(factoryImplementationNames.size()); for (String factoryImplementationName : factoryImplementationNames) { // 實(shí)例化工廠(chǎng)類(lèi),并添加到結(jié)果集中 result.add(instantiateFactory(factoryImplementationName, factoryType, classLoaderToUse)); } // 對(duì)結(jié)果集列表進(jìn)行排序 AnnotationAwareOrderComparator.sort(result); return result; }
private staticT instantiateFactory(String factoryImplementationName, Class factoryType, ClassLoader classLoader) { try { Class<?> factoryImplementationClass = ClassUtils.forName(factoryImplementationName, classLoader); if (!factoryType.isAssignableFrom(factoryImplementationClass)) { throw new IllegalArgumentException( "Class [" + factoryImplementationName + "] is not assignable to factory type [" + factoryType.getName() + "]"); } return (T) ReflectionUtils.accessibleConstructor(factoryImplementationClass).newInstance(); } catch (Throwable ex) { throw new IllegalArgumentException( "Unable to instantiate factory class [" + factoryImplementationName + "] for factory type [" + factoryType.getName() + "]", ex); } }
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。