JPA Class

Persistence

java.lang.Object
  ∟ jakarta.persistence.Persistence

Bootstrap class used to obtain an EntityManagerFactory in Java SE environments. It may also be used to cause schema generation to occur.

The Persistence class is available in a Jakarta EE container environment as well; however, support for the Java SE bootstrapping APIs is not required in container environments.

The Persistence class is used to obtain a PersistenceUtil instance in both Jakarta EE and Java SE environments.

Since:
JPA 1.0
The Database Connection using JPA article explains how to use Persistence.

Public Static Methods

Create and return an EntityManagerFactory for the named persistence unit, using the given properties.
Parameters:
configuration - configuration of the persistence unit
Return:
the factory that creates {@link EntityManager} s configured according to the specified persistence unit
Since:
JPA 3.2
Create and return an EntityManagerFactory for the named persistence unit.
Parameters:
persistenceUnitName - the name of the persistence unit
Return:
the factory that creates {@link EntityManager} s configured according to the specified persistence unit
Since:
JPA 1.0
EntityManagerFactory createEntityManagerFactory(String persistenceUnitName, Map<?,?> properties)
Create and return an EntityManagerFactory for the named persistence unit, using the given properties.
Parameters:
persistenceUnitName - the name of the persistence unit
properties - additional properties to use when creating the factory. These properties may include properties to control schema generation. The values of these properties override any values that may have been configured elsewhere.
Return:
the factory that creates {@link EntityManager} s configured according to the specified persistence unit
Since:
JPA 1.0
void generateSchema(String persistenceUnitName, Map<?,?> map)
Create database schemas and/or tables and/or create DDL scripts as determined by the supplied properties.

Called when schema generation is to occur as a separate phase from creation of the entity manager factory.

Parameters:
persistenceUnitName - the name of the persistence unit
map - properties for schema generation; these may also contain provider-specific properties. The values of these properties override any values that may have been configured elsewhere.
Throws:
PersistenceException - if insufficient or inconsistent configuration information is provided or if schema generation otherwise fails.
Since:
JPA 2.1
Return the PersistenceUtil instance
Return:
{@link PersistenceUtil} instance
Since:
JPA 2.0

Method inherited from class java.lang.Object

equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait