PersistenceProvider
Interface implemented by the persistence provider.
It is invoked by the container in Jakarta EE environments and by the Persistence class in Java SE environments to create an EntityManagerFactory and/or to cause schema generation to occur.
- Since:
- JPA 1.0
Public Methods
- Parameters:
info- metadata for use by the persistence providermap- a Map of integration-level properties for use by the persistence provider (may be null if no properties are specified). These properties may include properties to control schema generation. If a Bean Validation provider is present in the classpath, the container must pass the {@code ValidatorFactory} instance in the map with the key {@code "jakarta.persistence.validation.factory"} . If the containing archive is a bean archive, the container must pass the {@code BeanManager} instance in the map with the key {@code "jakarta.persistence.bean.manager"} .
- Return:
- {@link EntityManagerFactory} for the persistence unit specified by the metadata
- Since:
- JPA 1.0
- Parameters:
configuration- the configuration of the persistence unit
- Return:
- EntityManagerFactory for the persistence unit, or null if the provider is not the right provider
- Throws:
- IllegalStateException - if required configuration is missing
- See Also:
- createEntityManagerFactory()
- Since:
- JPA 3.2
- Parameters:
emName- the name of the persistence unitmap- a Map of properties for use by the persistence provider. These properties may be used to override the values of the corresponding elements in the {@code persistence.xml} file or specify values for properties not specified in the {@code persistence.xml} (and may be null if no properties are specified).
- Return:
- EntityManagerFactory for the persistence unit, or null if the provider is not the right provider
- See Also:
- createEntityManagerFactory()
- Since:
- JPA 1.0
void generateSchema(PersistenceUnitInfo info, Map<?,?> map)
Called by the container when schema generation is to occur as a separate phase from creation of the entity manager factory.
- Parameters:
info- metadata for use by the persistence providermap- properties for schema generation; these may also include provider-specific properties
- Throws:
- PersistenceException - if insufficient or inconsistent configuration information is provided of if schema generation otherwise fails
- Since:
- JPA 2.1
boolean generateSchema(String persistenceUnitName, Map<?,?> map)
Called by the Persistence class when schema generation is to occur as a separate phase from creation of the entity manager factory.
- Parameters:
persistenceUnitName- the name of the persistence unitmap- properties for schema generation; these may also contain provider-specific properties. The value of these properties override any values that may have been configured elsewhere.
- Return:
- true if schema was generated, otherwise false
- Throws:
- PersistenceException - if insufficient or inconsistent configuration information is provided or if schema generation otherwise fails
- Since:
- JPA 2.1
- Return:
- an instance of {@link ProviderUtil}
- Since:
- JPA 2.0