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 String
CLASSLOADERS
Specifies acollection
of theClassLoader
instances Hibernate should use for classloading and resource loading.static String
JNDI_CLASS
Specifies the JNDIInitialContextFactory
implementation class to use.static String
JNDI_PREFIX
A prefix for properties specifying arbitrary JNDIInitialContext
properties.static String
JNDI_URL
Specifies the JNDI provider/connection URL.static String
TC_CLASSLOADER
Specifies how the thread context class loader must be used for class lookup.
-
-
-
Field Detail
-
JNDI_CLASS
static final String JNDI_CLASS
Specifies the JNDIInitialContextFactory
implementation 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 JNDIInitialContext
properties. These properties are simply passed along to the constructorInitialContext(java.util.Hashtable)
.- See Also:
- Constant Field Values
-
CLASSLOADERS
static final String CLASSLOADERS
Specifies acollection
of theClassLoader
instances 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
-
-