Package | Description |
---|---|
org.hibernate.cfg |
This package defines APIs for configuring Hibernate, and classes
for building the Hibernate configuration-time metamodel.
|
org.hibernate.cfg.beanvalidation | |
org.hibernate.ejb | |
org.hibernate.ejb.event | |
org.hibernate.engine.spi | |
org.hibernate.envers.ant | |
org.hibernate.envers.configuration | |
org.hibernate.envers.configuration.metadata | |
org.hibernate.envers.event | |
org.hibernate.event.service.internal | |
org.hibernate.integrator.spi | |
org.hibernate.internal |
An internal package containing mostly implementations of central Hibernate APIs.
|
org.hibernate.persister.collection |
This package abstracts the persistence mechanism for collections.
|
org.hibernate.persister.internal | |
org.hibernate.persister.spi | |
org.hibernate.search.cfg.impl | |
org.hibernate.search.hcore.impl | |
org.hibernate.service.internal | |
org.hibernate.service.spi | |
org.hibernate.stat.internal | |
org.hibernate.tool | |
org.hibernate.tool.hbm2ddl |
The hbm2ddl tool.
|
Modifier and Type | Class and Description |
---|---|
class |
AnnotationConfiguration
Deprecated.
All functionality has been moved to
Configuration |
Modifier and Type | Method and Description |
---|---|
Configuration |
Configuration.addAnnotatedClass(Class annotatedClass)
Read metadata from the annotations associated with this class.
|
Configuration |
Configuration.addCacheableFile(File xmlFile)
Add a cached mapping file.
|
Configuration |
Configuration.addCacheableFile(String xmlFile)
Add a cacheable mapping file.
|
Configuration |
Configuration.addCacheableFileStrictly(File xmlFile)
INTENDED FOR TESTSUITE USE ONLY!
Much like
addCacheableFile(File) except that here we will fail immediately if
the cache version cannot be found or used for whatever reason |
Configuration |
Configuration.addClass(Class persistentClass)
Read a mapping as an application resource using the convention that a class
named foo.bar.Foo is mapped by a file foo/bar/Foo.hbm.xml
which can be resolved as a classpath resource.
|
Configuration |
Configuration.addDirectory(File dir)
Read all mapping documents from a directory tree.
|
Configuration |
Configuration.addDocument(Document doc)
Read mappings from a DOM Document
|
Configuration |
Configuration.addFile(File xmlFile)
Read mappings from a particular XML file
|
Configuration |
Configuration.addFile(String xmlFile)
Read mappings from a particular XML file
|
Configuration |
Configuration.addInputStream(InputStream xmlInputStream)
Read mappings from an
InputStream . |
Configuration |
Configuration.addJar(File jar)
Read all mappings from a jar file
Assumes that any file named *.hbm.xml is a mapping document.
|
Configuration |
Configuration.addPackage(String packageName)
Read package-level metadata.
|
Configuration |
Configuration.addProperties(Properties extraProperties)
Add the given properties to ours.
|
Configuration |
Configuration.addResource(String resourceName)
Read mappings as a application resourceName (i.e.
|
Configuration |
Configuration.addResource(String resourceName,
ClassLoader classLoader)
Read mappings as a application resource (i.e.
|
Configuration |
Configuration.addURL(URL url)
Read mappings from a URL
|
Configuration |
Configuration.addXML(String xml)
Read mappings from a String
|
protected Configuration |
ExternalSessionFactoryConfig.buildConfiguration() |
Configuration |
Configuration.configure()
Use the mappings and properties specified in an application resource named hibernate.cfg.xml.
|
Configuration |
Configuration.configure(Document document)
Use the mappings and properties specified in the given XML document.
|
Configuration |
Configuration.configure(File configFile)
Use the mappings and properties specified in the given application file.
|
Configuration |
Configuration.configure(String resource)
Use the mappings and properties specified in the given application resource.
|
Configuration |
Configuration.configure(URL url)
Use the mappings and properties specified in the given document.
|
protected Configuration |
Configuration.doConfigure(org.dom4j.Document doc)
Parse a dom4j document conforming to the Hibernate Configuration DTD (hibernate-configuration-3.0.dtd)
and use its information to configure this
Configuration 's state |
protected Configuration |
Configuration.doConfigure(InputStream stream,
String resourceName)
Configure this configuration's state from the contents of the given input stream.
|
Configuration |
Configuration.mergeProperties(Properties properties)
Adds the incoming properties to the internal properties structure, as long as the internal structure does not
already contain an entry for the given key.
|
Configuration |
Configuration.setCacheConcurrencyStrategy(String entityName,
String concurrencyStrategy)
Set up a cache for an entity class
|
Configuration |
Configuration.setCacheConcurrencyStrategy(String entityName,
String concurrencyStrategy,
String region)
Set up a cache for an entity class, giving an explicit region name
|
Configuration |
Configuration.setCollectionCacheConcurrencyStrategy(String collectionRole,
String concurrencyStrategy)
Set up a cache for a collection role
|
Configuration |
Configuration.setInterceptor(Interceptor interceptor)
Set the current
Interceptor |
Configuration |
Configuration.setNamingStrategy(NamingStrategy namingStrategy)
Set the current naming strategy.
|
Configuration |
Configuration.setNamingStrategyDelegator(NamingStrategyDelegator namingStrategyDelegator)
Set a current naming strategy delegator.
|
Configuration |
Configuration.setProperties(Properties properties)
Specify a completely new set of properties
|
Configuration |
Configuration.setProperty(String propertyName,
String value)
Set a property value by name
|
Modifier and Type | Method and Description |
---|---|
Configuration |
ActivationContext.getConfiguration()
Access the Configuration
|
Modifier and Type | Method and Description |
---|---|
void |
BeanValidationEventListener.initialize(Configuration cfg) |
void |
BeanValidationIntegrator.integrate(Configuration configuration,
SessionFactoryImplementor sessionFactory,
SessionFactoryServiceRegistry serviceRegistry) |
Modifier and Type | Method and Description |
---|---|
Configuration |
Ejb3Configuration.getHibernateConfiguration()
Deprecated.
This API is intended to give a read-only configuration.
|
Modifier and Type | Method and Description |
---|---|
protected org.hibernate.ejb.EntityManagerFactoryImpl.JpaMetaModelPopulationSetting |
EntityManagerFactoryImpl.determineJpaMetaModelPopulationSetting(Configuration cfg) |
Constructor and Description |
---|
EntityManagerFactoryImpl(PersistenceUnitTransactionType transactionType,
boolean discardOnClose,
Class sessionInterceptorClass,
Configuration cfg,
ServiceRegistry serviceRegistry,
String persistenceUnitName) |
Modifier and Type | Method and Description |
---|---|
void |
JpaIntegrator.integrate(Configuration configuration,
SessionFactoryImplementor sessionFactory,
SessionFactoryServiceRegistry serviceRegistry) |
Modifier and Type | Method and Description |
---|---|
CacheImplementor |
CacheInitiator.initiateService(SessionFactoryImplementor sessionFactory,
Configuration configuration,
ServiceRegistryImplementor registry) |
Modifier and Type | Method and Description |
---|---|
protected void |
JPAConfigurationTaskWithEnvers.doConfiguration(Configuration configuration) |
protected void |
ConfigurationTaskWithEnvers.doConfiguration(Configuration configuration) |
protected void |
AnnotationConfigurationTaskWithEnvers.doConfiguration(Configuration configuration) |
Modifier and Type | Method and Description |
---|---|
org.hibernate.envers.configuration.RevisionInfoConfigurationResult |
RevisionInfoConfiguration.configure(Configuration cfg,
ReflectionManager reflectionManager) |
EntitiesConfigurations |
EntitiesConfigurator.configure(Configuration cfg,
ReflectionManager reflectionManager,
GlobalConfiguration globalCfg,
AuditEntitiesConfiguration verEntCfg,
AuditStrategy auditStrategy,
org.dom4j.Document revisionInfoXmlMapping,
org.dom4j.Element revisionInfoRelationMapping) |
static AuditConfiguration |
AuditConfiguration.getFor(Configuration cfg) |
static AuditConfiguration |
AuditConfiguration.getFor(Configuration cfg,
ClassLoaderService classLoaderService) |
Constructor and Description |
---|
AuditConfiguration(Configuration cfg) |
AuditConfiguration(Configuration cfg,
ClassLoaderService classLoaderService) |
PersistentClassGraphDefiner(Configuration cfg) |
Constructor and Description |
---|
AuditMetadataGenerator(Configuration cfg,
GlobalConfiguration globalCfg,
AuditEntitiesConfiguration verEntCfg,
AuditStrategy auditStrategy,
org.dom4j.Element revisionInfoRelationMapping,
AuditEntityNameRegister auditEntityNameRegister) |
Modifier and Type | Method and Description |
---|---|
void |
EnversIntegrator.integrate(Configuration configuration,
SessionFactoryImplementor sessionFactory,
SessionFactoryServiceRegistry serviceRegistry) |
Modifier and Type | Method and Description |
---|---|
EventListenerRegistry |
EventListenerServiceInitiator.initiateService(SessionFactoryImplementor sessionFactory,
Configuration configuration,
ServiceRegistryImplementor registry) |
Modifier and Type | Method and Description |
---|---|
void |
Integrator.integrate(Configuration configuration,
SessionFactoryImplementor sessionFactory,
SessionFactoryServiceRegistry serviceRegistry)
Perform integration.
|
Constructor and Description |
---|
SessionFactoryImpl(Configuration cfg,
Mapping mapping,
ServiceRegistry serviceRegistry,
Settings settings,
SessionFactoryObserver observer) |
Constructor and Description |
---|
AbstractCollectionPersister(Collection collection,
CollectionRegionAccessStrategy cacheAccessStrategy,
Configuration cfg,
SessionFactoryImplementor factory) |
BasicCollectionPersister(Collection collection,
CollectionRegionAccessStrategy cacheAccessStrategy,
Configuration cfg,
SessionFactoryImplementor factory) |
OneToManyPersister(Collection collection,
CollectionRegionAccessStrategy cacheAccessStrategy,
Configuration cfg,
SessionFactoryImplementor factory) |
Modifier and Type | Method and Description |
---|---|
CollectionPersister |
PersisterFactoryImpl.createCollectionPersister(Configuration cfg,
Collection collectionMetadata,
CollectionRegionAccessStrategy cacheAccessStrategy,
SessionFactoryImplementor factory) |
Modifier and Type | Method and Description |
---|---|
CollectionPersister |
PersisterFactory.createCollectionPersister(Configuration cfg,
Collection model,
CollectionRegionAccessStrategy cacheAccessStrategy,
SessionFactoryImplementor factory)
Create a collection persister instance.
|
Constructor and Description |
---|
SearchConfigurationFromHibernateCore(Configuration cfg) |
Modifier and Type | Method and Description |
---|---|
void |
HibernateSearchIntegrator.integrate(Configuration configuration,
SessionFactoryImplementor sessionFactory,
SessionFactoryServiceRegistry serviceRegistry) |
Constructor and Description |
---|
HibernateSearchSessionFactoryObserver(Configuration configuration,
FullTextIndexEventListener listener) |
Modifier and Type | Method and Description |
---|---|
SessionFactoryServiceRegistryImpl |
SessionFactoryServiceRegistryFactoryImpl.buildServiceRegistry(SessionFactoryImplementor sessionFactory,
Configuration configuration) |
Constructor and Description |
---|
SessionFactoryServiceRegistryImpl(ServiceRegistryImplementor parent,
SessionFactoryImplementor sessionFactory,
Configuration configuration) |
Modifier and Type | Method and Description |
---|---|
SessionFactoryServiceRegistryImpl |
SessionFactoryServiceRegistryFactory.buildServiceRegistry(SessionFactoryImplementor sessionFactory,
Configuration configuration)
Create the registry.
|
R |
SessionFactoryServiceInitiator.initiateService(SessionFactoryImplementor sessionFactory,
Configuration configuration,
ServiceRegistryImplementor registry)
Initiates the managed service.
|
Modifier and Type | Method and Description |
---|---|
StatisticsImplementor |
StatisticsInitiator.initiateService(SessionFactoryImplementor sessionFactory,
Configuration configuration,
ServiceRegistryImplementor registry) |
Constructor and Description |
---|
EnversSchemaGenerator(Configuration configuration) |
EnversSchemaGenerator(Configuration configuration,
Connection connection) |
EnversSchemaGenerator(Configuration configuration,
Properties properties) |
EnversSchemaGenerator(ServiceRegistry serviceRegistry,
Configuration configuration) |
Constructor and Description |
---|
DatabaseMetadata(Connection connection,
Dialect dialect,
Configuration config) |
DatabaseMetadata(Connection connection,
Dialect dialect,
Configuration config,
boolean extras) |
SchemaExport(Configuration configuration)
Create a schema exporter for the given Configuration
|
SchemaExport(Configuration configuration,
Connection connection)
Create a schema exporter for the given Configuration, using the supplied connection for connectivity.
|
SchemaExport(Configuration configuration,
Properties properties)
Deprecated.
properties may be specified via the Configuration object
|
SchemaExport(ServiceRegistry serviceRegistry,
Configuration configuration) |
SchemaUpdate(Configuration cfg) |
SchemaUpdate(Configuration configuration,
Properties properties) |
SchemaUpdate(ServiceRegistry serviceRegistry,
Configuration cfg) |
SchemaValidator(Configuration cfg) |
SchemaValidator(Configuration cfg,
Properties connectionProperties) |
SchemaValidator(ServiceRegistry serviceRegistry,
Configuration cfg) |
Copyright © 2018 JBoss by Red Hat. All rights reserved.