org.hibernate.metamodel.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 http://www.gnu.org/licenses/lgpl-2.1.html
*/
/**
* This package defines an API for accessing the runtime metamodel describing persistent
* entities in Java and their mappings to the relational database schema.
*
* The runtime metamodel may be divided into two layers:
*
* - The {@linkplain org.hibernate.metamodel.model.domain domain metamodel}, which is
* an extension of the {@linkplain jakarta.persistence.metamodel JPA metamodel} and
* is used in {@linkplain org.hibernate.query query} handling. This layer contains
* information about Java classes, but not about their mappings to the database.
*
- The {@linkplain org.hibernate.metamodel.mapping mapping metamodel}, which describes
* the application domain model and its mapping to the database. It is distinct from
* the JPA metamodel, which does not contain this O/R mapping information.
*
* @author Steve Ebersole
*/
@Incubating
package org.hibernate.metamodel;
import org.hibernate.Incubating;
© 2015 - 2024 Weber Informatics LLC | Privacy Policy