org.hibernate.service.package-info Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of beangle-hibernate-core Show documentation
Show all versions of beangle-hibernate-core Show documentation
Hibernate Orm Core Shade,Support Scala Collection
/*
* Hibernate, Relational Persistence for Idiomatic Java
*
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
* See the lgpl.txt file in the root directory or .
*/
/**
* Defines a framework for pluggable {@linkplain org.hibernate.service.Service services},
* allowing for customization of key components of Hibernate, and abstraction of these
* components as SPI interfaces.
*
* Services usually belong to a {@link org.hibernate.service.ServiceRegistry}, since
* that's where Hibernate goes to find them.
*
* Libraries may even contribute {@linkplain org.hibernate.integrator.spi.Integrator
* discoverable} service implementations via the Java {@link java.util.ServiceLoader}
* facility.
*
* @see org.hibernate.service.Service
* @see org.hibernate.service.ServiceRegistry
* @see org.hibernate.service.spi.ServiceInitiator
* @see org.hibernate.integrator.spi.Integrator
* @see org.hibernate.service.spi.SessionFactoryServiceRegistryBuilder
*/
package org.hibernate.service;
© 2015 - 2024 Weber Informatics LLC | Privacy Policy