IOC 之 獲取 Document 物件
在 XmlBeanDefinitionReader.doLoadDocument()
方法中做了兩件事情,一是呼叫 getValidationModeForResource()
獲取 XML 的驗證模式,二是呼叫 DocumentLoader.loadDocument()
獲取 Document 物件。上篇部落格已經分析了獲取 XML 驗證模式(【死磕Spring】----- IOC 之 獲取驗證模型),這篇我們分析獲取 Document 物件。
獲取 Document 的策略由介面 DocumentLoader 定義,如下:
public interface DocumentLoader { Document loadDocument( InputSource inputSource, EntityResolver entityResolver, ErrorHandler errorHandler, int validationMode, boolean namespaceAware) throws Exception; }
DocumentLoader 中只有一個方法 loadDocument()
,該方法接收五個引數:
- inputSource:載入 Document 的 Resource 源
- entityResolver:解析檔案的解析器
- errorHandler:處理載入 Document 物件的過程的錯誤
- validationMode:驗證模式
- namespaceAware:名稱空間支援。如果要提供對 XML 名稱空間的支援,則為true
該方法由 DocumentLoader 的預設實現類 DefaultDocumentLoader 實現,如下:
public Document loadDocument(InputSource inputSource, EntityResolver entityResolver, ErrorHandler errorHandler, int validationMode, boolean namespaceAware) throws Exception { DocumentBuilderFactory factory = createDocumentBuilderFactory(validationMode, namespaceAware); if (logger.isDebugEnabled()) { logger.debug("Using JAXP provider [" + factory.getClass().getName() + "]"); } DocumentBuilder builder = createDocumentBuilder(factory, entityResolver, errorHandler); return builder.parse(inputSource); }
首先呼叫 createDocumentBuilderFactory()
建立 DocumentBuilderFactory ,再通過該 factory 建立 DocumentBuilder,最後解析 InputSource 返回 Document 物件。
EntityResolver
通過 loadDocument()
獲取 Document 物件時,有一個引數 entityResolver ,該引數是通過 getEntityResolver()
獲取的。
getEntityResolver()
返回指定的解析器,如果沒有指定,則構造一個未指定的預設解析器。
protected EntityResolver getEntityResolver() { if (this.entityResolver == null) { ResourceLoader resourceLoader = getResourceLoader(); if (resourceLoader != null) { this.entityResolver = new ResourceEntityResolver(resourceLoader); } else { this.entityResolver = new DelegatingEntityResolver(getBeanClassLoader()); } } return this.entityResolver; }
如果 ResourceLoader 不為 null,則根據指定的 ResourceLoader 建立一個 ResourceEntityResolver。如果 ResourceLoader 為null,則建立 一個 DelegatingEntityResolver,該 Resolver 委託給預設的 BeansDtdResolver 和 PluggableSchemaResolver 。
- ResourceEntityResolver:繼承自 EntityResolver ,通過 ResourceLoader 來解析實體的引用。
- DelegatingEntityResolver:EntityResolver 的實現,分別代理了 dtd 的 BeansDtdResolver 和 xml schemas 的 PluggableSchemaResolver。
- BeansDtdResolver : spring bean dtd 解析器。EntityResolver 的實現,用來從 classpath 或者 jar 檔案載入 dtd。
- PluggableSchemaResolver:使用一系列 Map 檔案將 schema url 解析到本地 classpath 資源
getEntityResolver()
返回 EntityResolver ,那這個 EntityResolver 到底是什麼呢?
If a SAX application needs to implement customized handling for external entities, it must implement this interface and register an instance with the SAX driver using the setEntityResolver method. 就是說:如果 SAX 應用程式需要實現自定義處理外部實體,則必須實現此介面並使用
setEntityResolver()
向 SAX 驅動器註冊一個例項。
如下:
public class MyResolver implements EntityResolver {
public InputSource resolveEntity (String publicId, String systemId){
if (systemId.equals("http://www.myhost.com/today")){
MyReader reader = new MyReader();
return new InputSource(reader);
} else {
// use the default behaviour
return null;
}
}
}
我們首先將 spring-student.xml
檔案中的 XSD 宣告的地址改掉,如下:
如果我們再次執行,則會報如下錯誤:
從上面的錯誤可以看到,是在進行文件驗證時,無法根據宣告找到 XSD 驗證檔案而導致無法進行 XML 檔案驗證。在(【死磕Spring】----- IOC 之 獲取驗證模型)中講到,如果要解析一個 XML 檔案,SAX 首先會讀取該 XML 文件上的宣告,然後根據宣告去尋找相應的 DTD 定義,以便對文件進行驗證。預設的載入規則是通過網路方式下載驗證檔案,而在實際生產環境中我們會遇到網路中斷或者不可用狀態,那麼就應用就會因為無法下載驗證檔案而報錯。
EntityResolver 的作用就是應用本身可以提供一個如何尋找驗證檔案的方法,即自定義實現。
介面宣告如下:
public interface EntityResolver {
public abstract InputSource resolveEntity (String publicId,String systemId)
throws SAXException, IOException;
}
介面方法接收兩個引數 publicId 和 systemId,並返回 InputSource 物件。兩個引數宣告如下:
- publicId:被引用的外部實體的公共識別符號,如果沒有提供,則返回null
- systemId:被引用的外部實體的系統識別符號
這兩個引數的實際內容和具體的驗證模式有關係。如下
- XSD 驗證模式
- publicId:null
- systemId:http://www.springframework.org/schema/beans/spring-beans.xsd
- DTD 驗證模式
- publicId:-//SPRING//DTD BEAN 2.0//EN
- systemId:http://www.springframework.org/dtd/spring-beans.dtd
如下:
我們知道在 Spring 中使用 DelegatingEntityResolver 為 EntityResolver 的實現類,resolveEntity()
實現如下:
public InputSource resolveEntity(String publicId, @Nullable String systemId) throws SAXException, IOException {
if (systemId != null) {
if (systemId.endsWith(DTD_SUFFIX)) {
return this.dtdResolver.resolveEntity(publicId, systemId);
}
else if (systemId.endsWith(XSD_SUFFIX)) {
return this.schemaResolver.resolveEntity(publicId, systemId);
}
}
return null;
}
不同的驗證模式使用不同的解析器解析,如果是 DTD 驗證模式則使用 BeansDtdResolver 來進行解析,如果是 XSD 則使用 PluggableSchemaResolver 來進行解析。
BeansDtdResolver 的解析過程如下:
public InputSource resolveEntity(String publicId, @Nullable String systemId) throws IOException {
if (logger.isTraceEnabled()) {
logger.trace("Trying to resolve XML entity with public ID [" + publicId +
"] and system ID [" + systemId + "]");
}
if (systemId != null && systemId.endsWith(DTD_EXTENSION)) {
int lastPathSeparator = systemId.lastIndexOf('/');
int dtdNameStart = systemId.indexOf(DTD_NAME, lastPathSeparator);
if (dtdNameStart != -1) {
String dtdFile = DTD_NAME + DTD_EXTENSION;
if (logger.isTraceEnabled()) {
logger.trace("Trying to locate [" + dtdFile + "] in Spring jar on classpath");
}
try {
Resource resource = new ClassPathResource(dtdFile, getClass());
InputSource source = new InputSource(resource.getInputStream());
source.setPublicId(publicId);
source.setSystemId(systemId);
if (logger.isDebugEnabled()) {
logger.debug("Found beans DTD [" + systemId + "] in classpath: " + dtdFile);
}
return source;
}
catch (IOException ex) {
if (logger.isDebugEnabled()) {
logger.debug("Could not resolve beans DTD [" + systemId + "]: not found in classpath", ex);
}
}
}
}
or wherever.
return null;
}
從上面的程式碼中我們可以看到載入 DTD 型別的 BeansDtdResolver.resolveEntity()
只是對 systemId 進行了簡單的校驗(從最後一個 / 開始,內容中是否包含 spring-beans
),然後構造一個 InputSource 並設定 publicId、systemId,然後返回。
PluggableSchemaResolver 的解析過程如下:
public InputSource resolveEntity(String publicId, @Nullable String systemId) throws IOException {
if (logger.isTraceEnabled()) {
logger.trace("Trying to resolve XML entity with public id [" + publicId +
"] and system id [" + systemId + "]");
}
if (systemId != null) {
String resourceLocation = getSchemaMappings().get(systemId);
if (resourceLocation != null) {
Resource resource = new ClassPathResource(resourceLocation, this.classLoader);
try {
InputSource source = new InputSource(resource.getInputStream());
source.setPublicId(publicId);
source.setSystemId(systemId);
if (logger.isDebugEnabled()) {
logger.debug("Found XML schema [" + systemId + "] in classpath: " + resourceLocation);
}
return source;
}
catch (FileNotFoundException ex) {
if (logger.isDebugEnabled()) {
logger.debug("Couldn't find XML schema [" + systemId + "]: " + resource, ex);
}
}
}
}
return null;
}
首先呼叫 getSchemaMappings() 獲取一個對映表(systemId 與其在本地的對照關係),然後根據傳入的 systemId 獲取該 systemId 在本地的路徑 resourceLocation,最後根據 resourceLocation 構造 InputSource 物件。
對映表如下(部分):
http://www.cgpwyj.cn/ http://news.cgpwyj.cn/ http://item.cgpwyj.cn/ http://www.peacemind.com.cn/ http://news.peacemind.com.cn/ http://item.peacemind.com.cn/ http://www.tasknet.com.cn/ http://news.tasknet.com.cn/ http://item.tasknet.com.cn/ http://www.ownbar.cn/ http://news.ownbar.cn/ http://item.ownbar.cn http://www.shtarchao.net.cn/ http://news.shtarchao.net.cn/ http://item.shtarchao.net.cn/ http://www.metroworld.com.cn/ http://news.metroworld.com.cn/ http://item.metroworld.com.cn/ http://www.cngodo.cn/ http://news.cngodo.cn/ http://item.cngodo.cn/ http://www.gzrdbp.cn/ http://news.gzrdbp.cn/ http://item.gzrdbp.cn/ http://www.dnapt.cn/ http://news.dnapt.cn/ http://item.dnapt.cn/ http://www.ncxlk.cn/ http://news.ncxlk.cn/ http://item.ncxlk.cn/ http://www.zgxxyp.cn/ http://news.zgxxyp.cn/ http://item.zgxxyp.cn/ http://www.sjjdvr.cn/ http://news.sjjdvr.cn/ http://item.sjjdvr.cn/ http://www.sujinkeji.cn/ http://news.sujinkeji.cn/ http://item.sujinkeji.cn/ http://www.zsjxbd.cn/ http://news.zsjxbd.cn/ http://item.zsjxbd.cn/ http://www.yesgas.cn/ http://news.yesgas.cn/ http://item.yesgas.cn/ http://www.quickpass.sh.cn/ http://news.quickpass.sh.cn/ http://item.quickpass.sh.cn/ http://www.jspcrm.cn/ http://news.jspcrm.cn/ http://item.jspcrm.cn/ http://www.yjdwpt.cn/ http://news.yjdwpt.cn/ http://item.yjdwpt.cn/ http://www.henanwulian.cn/ http://news.henanwulian.cn/ http://item.henanwulian.cn/ http://www.hhrshh.cn/ http://news.hhrshh.cn/ http://item.hhrshh.cn/ http://www.gpgold.cn/ http://news.gpgold.cn/ http://item.gpgold.cn/ http://www.jingzhuiyou.cn/ http://news.jingzhuiyou.cn/ http://item.jingzhuiyou.cn/