public class WebContainerAuthorizer.LocalEntityResolver extends Object implements EntityResolver
XML entity resolver that redirects resolution requests by JDOM, JAXP and
other XML parsers to locally-cached copies of the resources. Local
resources are stored in the WEB-INF/dtd
directory.
For example, Sun Microsystem's DTD for the webapp 2.3 specification is normally
kept at http://java.sun.com/dtd/web-app_2_3.dtd
. The
local copy is stored at WEB-INF/dtd/web-app_2_3.dtd
.
Constructor and Description |
---|
LocalEntityResolver() |
Modifier and Type | Method and Description |
---|---|
InputSource |
resolveEntity(String publicId,
String systemId)
Returns an XML input source for a requested external resource by
reading the resource instead from local storage.
|
public LocalEntityResolver()
public InputSource resolveEntity(String publicId, String systemId) throws SAXException, IOException
WEB-INF/dtd
, plus the file name of the requested
resource, minus the non-filename path information.resolveEntity
in interface EntityResolver
publicId
- the public ID, such as
-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN
systemId
- the system ID, such as
http://java.sun.com/dtd/web-app_2_3.dtd
SAXException
- if the resource cannot be resolved locallyIOException
- if the resource cannot be openedEntityResolver.resolveEntity(java.lang.String,
java.lang.String)
Copyright © 2001-2019 The Apache Software Foundation. All rights reserved.