接口 ProtocolResolver

函数接口:
这是一个函数接口, 因此可用作 lambda 表达式或方法引用的赋值目标。

@FunctionalInterface public interface ProtocolResolver
A resolution strategy for protocol-specific resource handles.

Used as an SPI for DefaultResourceLoader, allowing for custom protocols to be handled without subclassing the loader implementation (or application context implementation).

从以下版本开始:
4.0
作者:
Juergen Hoeller, TODAY 2021/10/7 17:10
另请参阅:
  • 方法概要

    修饰符和类型
    方法
    说明
    resolve(String location, ResourceLoader resourceLoader)
    Resolve the given location against the given resource loader if this implementation's protocol matches.
  • 方法详细资料

    • resolve

      @Nullable Resource resolve(String location, ResourceLoader resourceLoader)
      Resolve the given location against the given resource loader if this implementation's protocol matches.
      参数:
      location - the user-specified resource location
      resourceLoader - the associated resource loader
      返回:
      a corresponding Resource handle if the given location matches this resolver's protocol, or null otherwise