63 Star 428 Fork 156

huifer/Code-Analysis

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Spring-NamespaceHandlerResolver.md 768 Bytes
一键复制 编辑 原始数据 按行查看 历史
huifer 提交于 5年前 . feat: namespace 相关分析

Spring NamespaceHandlerResolver

  • 类全路径: org.springframework.beans.factory.xml.NamespaceHandlerResolver

  • 类作用: 命名空间处理器解析

  • NamespaceHandlerResolver 作为借口在本文仅了解方法作用即可. 详细实现类请看DefaultNamespaceHandlerResolver

@FunctionalInterface
public interface NamespaceHandlerResolver {

	/**
	 * Resolve the namespace URI and return the located {@link NamespaceHandler}
	 * implementation.
	 *
	 * 解析命名空间的 url 获得 命名空间处理器
	 * @param namespaceUri the relevant namespace URI
	 * @return the located {@link NamespaceHandler} (may be {@code null})
	 */
	@Nullable
	NamespaceHandler resolve(String namespaceUri);

}

Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/pychfarm_admin/code-analysis.git
git@gitee.com:pychfarm_admin/code-analysis.git
pychfarm_admin
code-analysis
Code-Analysis
v0.0.15

搜索帮助