当前页面:
在线文档首页 >
Spring Framework 2.0.5 API 文档英文版
DocumentLoader (Spring Framework API 2.0) - Spring Framework 2.0.5 API 文档英文版
org.springframework.beans.factory.xml
Interface DocumentLoader
- All Known Implementing Classes:
- DefaultDocumentLoader
public interface DocumentLoader
Strategy interface for loading an XML Document
.
- Since:
- 2.0
- Author:
- Rob Harrop
- See Also:
DefaultDocumentLoader
loadDocument
Document loadDocument(InputSource inputSource,
EntityResolver entityResolver,
ErrorHandler errorHandler,
int validationMode,
boolean namespaceAware)
throws Exception
- Load a
document
from the supplied source
.
- Parameters:
inputSource
- the source of the document that is to be loadedentityResolver
- the resolver that is to be used to resolve any entitieserrorHandler
- used to report any errors during document loadingvalidationMode
- the type of validation (none
, DTD
, or XSD
)namespaceAware
- true
if the loading is provide support for XML namespaces
- Returns:
- the loaded
document
- Throws:
Exception
- if an error occurs
Copyright © 2002-2007 The Spring Framework.