public class

DTDEntityResolver

extends Object
implements Serializable EntityResolver
java.lang.Object
   ↳ org.hibernate.util.DTDEntityResolver
Known Direct Subclasses

Class Overview

An EntityResolver implementation which attempts to resolve various systemId URLs to local classpath lookups

  1. Any systemId URL beginning with http://www.hibernate.org/dtd/ is searched for as a classpath resource in the classloader which loaded the Hibernate classes.
  2. Any systemId URL using classpath as the scheme (i.e. starting with classpath:// is searched for as a classpath resource using first the current thread context classloader and then the classloader which loaded the Hibernate classes.

Any entity references which cannot be resolved in relation to the above rules result in returning null, which should force the SAX reader to handle the entity reference in its default manner.

Summary

Public Constructors
DTDEntityResolver()
Public Methods
InputSource resolveEntity(String publicId, String systemId)
Protected Methods
InputStream resolveInHibernateNamespace(String path)
InputStream resolveInLocalNamespace(String path)
[Expand]
Inherited Methods
From class java.lang.Object
From interface org.xml.sax.EntityResolver

Public Constructors

public DTDEntityResolver ()

Public Methods

public InputSource resolveEntity (String publicId, String systemId)

Protected Methods

protected InputStream resolveInHibernateNamespace (String path)

protected InputStream resolveInLocalNamespace (String path)