All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.metamodel.package-info Maven / Gradle / Ivy

There is a newer version: 6.6.2.Final
Show newest version
/*
 * 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