Java org.hibernate.cfg AvailableSettings fields, constructors, methods, implement or subclass

Example usage for Java org.hibernate.cfg AvailableSettings fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.hibernate.cfg AvailableSettings.

The text is from its open source code.

Field

StringJPA_SHARED_CACHE_RETRIEVE_MODE
NOTE : Not a valid EMF property...
StringJPA_SHARED_CACHE_STORE_MODE
NOTE : Not a valid EMF property...
StringCLASSLOADERS
Used to define a java.util.Collection of the ClassLoader instances Hibernate should use for class-loading and resource-lookups.
StringAPP_CLASSLOADER
Names the ClassLoader used to load user application classes.
StringRESOURCES_CLASSLOADER
Names the ClassLoader Hibernate should use to perform resource loading.
StringHIBERNATE_CLASSLOADER
Names the ClassLoader responsible for loading Hibernate classes.
StringENVIRONMENT_CLASSLOADER
Names the ClassLoader used when Hibernate is unable to locates classes on the #APP_CLASSLOADER or #HIBERNATE_CLASSLOADER .
StringCONNECTION_PROVIDER
Names the org.hibernate.engine.jdbc.connections.spi.ConnectionProvider to use for obtaining JDBC connections.
StringDRIVER
Names the JDBC driver class
StringURL
Names the JDBC connection url.
StringUSER
Names the connection user.
StringPASS
Names the connection password.
StringISOLATION
Names the JDBC transaction isolation level
StringAUTOCOMMIT
Controls the autocommit mode of JDBC Connections obtained from a non-DataSource ConnectionProvider - assuming the ConnectionProvider impl properly leverages this setting (the provided Hibernate impls all do).
StringDATASOURCE
Names a javax.sql.DataSource .
StringDIALECT
Names the Hibernate SQL org.hibernate.dialect.Dialect class
StringTRANSACTION_COORDINATOR_STRATEGY
Names the implementation of TransactionCoordinatorBuilder to use for creating TransactionCoordinator instances.
StringJTA_PLATFORM
Names the org.hibernate.engine.transaction.jta.platform.spi.JtaPlatform implementation to use for integrating with JTA systems.
StringJTA_CACHE_TM
A configuration value key used to indicate that it is safe to cache javax.transaction.TransactionManager references.
StringJTA_CACHE_UT
A configuration value key used to indicate that it is safe to cache javax.transaction.UserTransaction references.
StringDEFAULT_SCHEMA
A default database schema (owner) name to use for unqualified tablenames
StringUSE_NEW_ID_GENERATOR_MAPPINGS
Setting which indicates whether or not the new org.hibernate.id.IdentifierGenerator are used for AUTO, TABLE and SEQUENCE.
StringSCANNER
Pass an implementation of org.hibernate.boot.archive.scan.spi.Scanner .
StringIMPLICIT_NAMING_STRATEGY
Used to specify the org.hibernate.boot.model.naming.ImplicitNamingStrategy class to use.
StringPHYSICAL_NAMING_STRATEGY
Used to specify the org.hibernate.boot.model.naming.PhysicalNamingStrategy class to use.
StringKEYWORD_AUTO_QUOTING_ENABLED
Specifies whether to automatically quote any names that are deemed keywords.
StringSESSION_FACTORY_NAME
Setting used to name the Hibernate org.hibernate.SessionFactory .
StringSESSION_FACTORY_NAME_IS_JNDI
Does the value defined by #SESSION_FACTORY_NAME represent a JNDI namespace into which the org.hibernate.SessionFactory should be bound and made accessible?
StringSHOW_SQL
Enable logging of generated SQL to the console
StringFORMAT_SQL
Enable formatting of SQL logged to the console
StringUSE_SQL_COMMENTS
Add comments to the generated SQL
StringDEFAULT_BATCH_FETCH_SIZE
The default batch size for batch fetching
StringUSE_GET_GENERATED_KEYS
Tells the JDBC driver to attempt to retrieve row Id with the JDBC 3.0 PreparedStatement.getGeneratedKeys() method.
StringSTATEMENT_BATCH_SIZE
Maximum JDBC batch size.
StringBATCH_VERSIONED_DATA
Should versioned data be included in batching?
StringRELEASE_CONNECTIONS
Specifies how Hibernate should release JDBC connections.
StringCURRENT_SESSION_CONTEXT_CLASS
Context scoping impl for org.hibernate.SessionFactory#getCurrentSession() processing.
StringUSE_REFLECTION_OPTIMIZER
Use bytecode libraries optimized property access
StringQUERY_TRANSLATOR
The classname of the HQL query parser factory
StringORDER_UPDATES
Enable ordering of update statements by primary key value
StringORDER_INSERTS
Enable ordering of insert statements for the purpose of more efficient JDBC batching.
StringBEAN_CONTAINER
Identifies an explicit org.hibernate.resource.beans.container.spi.BeanContainer to be used.
StringC3P0_MAX_SIZE
Maximum size of C3P0 connection pool
StringC3P0_MIN_SIZE
Minimum size of C3P0 connection pool
StringC3P0_TIMEOUT
Maximum idle time for C3P0 connection pool
StringC3P0_MAX_STATEMENTS
Maximum size of C3P0 statement cache
StringC3P0_ACQUIRE_INCREMENT
Number of connections acquired when pool is exhausted
StringC3P0_IDLE_TEST_PERIOD
Idle time before a C3P0 pooled connection is validated
StringCACHE_REGION_FACTORY
The org.hibernate.cache.spi.RegionFactory implementation.
StringCACHE_KEYS_FACTORY
Allow control to specify the org.hibernate.cache.spi.CacheKeysFactory impl to use.
StringCACHE_PROVIDER_CONFIG
The CacheProvider implementation class
StringUSE_SECOND_LEVEL_CACHE
Enable the second-level cache.
StringUSE_QUERY_CACHE
Enable the query cache (disabled by default)
StringQUERY_CACHE_FACTORY
The TimestampsCacheFactory implementation class.
StringCACHE_REGION_PREFIX
The CacheProvider region name prefix
StringUSE_STRUCTURED_CACHE
Enable use of structured second-level cache entries
StringGLOBALLY_QUOTED_IDENTIFIERS
Should all database identifiers be quoted.
StringJPAQL_STRICT_COMPLIANCE
StringHBM2DDL_AUTO
Setting to perform SchemaManagementTool actions automatically as part of the SessionFactory lifecycle.
StringHBM2DDL_IMPORT_FILES
Comma-separated names of the optional files containing SQL DML statements executed during the SessionFactory creation.
StringMULTI_TENANT
Strategy for multi-tenancy.
StringMULTI_TENANT_CONNECTION_PROVIDER
Names a org.hibernate.engine.jdbc.connections.spi.MultiTenantConnectionProvider implementation to use.
StringMULTI_TENANT_IDENTIFIER_RESOLVER
Names a org.hibernate.context.spi.CurrentTenantIdentifierResolver implementation to use.
StringENABLE_LAZY_LOAD_NO_TRANS
StringGENERATE_STATISTICS
Enable statistics collection
StringPREFER_GENERATOR_NAME_AS_DEFAULT_SEQUENCE_NAME
True/false setting indicating whether the value specified for GeneratedValue#generator() should be used as the sequence/table name when no matching javax.persistence.SequenceGenerator or javax.persistence.TableGenerator is found.