接口 ProtocolResolver
- 函数接口:
- 这是一个函数接口, 因此可用作 lambda 表达式或方法引用的赋值目标。
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
Resolve the given location against the given resource loader if this implementation's protocol matches.- 参数:
location- the user-specified resource locationresourceLoader- the associated resource loader- 返回:
- a corresponding
Resourcehandle if the given location matches this resolver's protocol, ornullotherwise
-