Package org.hibernate.cfg
Interface EnvironmentSettings
-
- All Known Subinterfaces:
AvailableSettings
- All Known Implementing Classes:
Environment
public interface EnvironmentSettings
-
-
Field Summary
Fields Modifier and Type Field Description static StringCLASSLOADERSSpecifies acollectionof theClassLoaderinstances Hibernate should use for classloading and resource loading.static StringJNDI_CLASSSpecifies the JNDIInitialContextFactoryimplementation class to use.static StringJNDI_PREFIXA prefix for properties specifying arbitrary JNDIInitialContextproperties.static StringJNDI_URLSpecifies the JNDI provider/connection URL.static StringTC_CLASSLOADERSpecifies how the thread context class loader must be used for class lookup.
-
-
-
Field Detail
-
JNDI_CLASS
static final String JNDI_CLASS
Specifies the JNDIInitialContextFactoryimplementation class to use. Passed along toInitialContext(Hashtable)as "java.naming.factory.initial".
-
JNDI_URL
static final String JNDI_URL
Specifies the JNDI provider/connection URL. Passed along toInitialContext(Hashtable)as "java.naming.provider.url".- See Also:
Context.PROVIDER_URL, Constant Field Values
-
JNDI_PREFIX
static final String JNDI_PREFIX
A prefix for properties specifying arbitrary JNDIInitialContextproperties. These properties are simply passed along to the constructorInitialContext(java.util.Hashtable).- See Also:
- Constant Field Values
-
CLASSLOADERS
static final String CLASSLOADERS
Specifies acollectionof theClassLoaderinstances Hibernate should use for classloading and resource loading.- Since:
- 5.0
- See Also:
- Constant Field Values
-
TC_CLASSLOADER
static final String TC_CLASSLOADER
Specifies how the thread context class loader must be used for class lookup.- See Also:
TcclLookupPrecedence, Constant Field Values
-
-