Class AbstractJpaVendorAdapter
- All Implemented Interfaces:
JpaVendorAdapter
- Direct Known Subclasses:
EclipseLinkJpaVendorAdapter
,HibernateJpaVendorAdapter
JpaVendorAdapter
implementation that defines common properties,
to be translated into vendor-specific JPA properties by concrete subclasses.- Since:
- 2.0
- Author:
- Juergen Hoeller, Rod Johnson
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected Database
Return the target database to operate on.protected String
Return the name of the target database to operate on.Class<? extends EntityManagerFactory>
Return the vendor-specific EntityManagerFactory interface that the EntityManagerFactory proxy is supposed to implement.Class<? extends EntityManager>
Return the vendor-specific EntityManager interface that this provider's EntityManagers will implement.Return the vendor-specific JpaDialect implementation for this provider, ornull
if there is none.Return a Map of vendor-specific JPA properties, typically based on settings in this JpaVendorAdapter instance.Return a Map of vendor-specific JPA properties for the given persistence unit, typically based on settings in this JpaVendorAdapter instance.Return the name of the persistence provider's root package (e.g.protected boolean
Return whether to generate DDL after the EntityManagerFactory has been initialized creating/updating all relevant tables.protected boolean
Return whether to show SQL in the log (or in the console).void
Optional callback for post-processing the native EntityManager before active use.void
Optional callback for post-processing the native EntityManagerFactory before active use.void
setDatabase
(Database database) Specify the target database to operate on, as a value of theDatabase
enum: DB2, DERBY, H2, HANA, HSQL, INFORMIX, MYSQL, ORACLE, POSTGRESQL, SQL_SERVER, SYBASEvoid
setDatabasePlatform
(String databasePlatform) Specify the name of the target database to operate on.void
setGenerateDdl
(boolean generateDdl) Set whether to generate DDL after the EntityManagerFactory has been initialized, creating/updating all relevant tables.void
setShowSql
(boolean showSql) Set whether to show SQL in the log (or in the console).Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.springframework.orm.jpa.JpaVendorAdapter
getPersistenceProvider
-
Constructor Details
-
AbstractJpaVendorAdapter
public AbstractJpaVendorAdapter()
-
-
Method Details
-
setDatabase
Specify the target database to operate on, as a value of theDatabase
enum: DB2, DERBY, H2, HANA, HSQL, INFORMIX, MYSQL, ORACLE, POSTGRESQL, SQL_SERVER, SYBASENOTE: This setting will override your JPA provider's default algorithm. Custom vendor properties may still fine-tune the database dialect. However, there may nevertheless be conflicts: For example, specify either this setting or Hibernate's "hibernate.dialect_resolvers" property, not both.
-
getDatabase
Return the target database to operate on. -
setDatabasePlatform
Specify the name of the target database to operate on. The supported values are vendor-dependent platform identifiers. -
getDatabasePlatform
Return the name of the target database to operate on. -
setGenerateDdl
public void setGenerateDdl(boolean generateDdl) Set whether to generate DDL after the EntityManagerFactory has been initialized, creating/updating all relevant tables.Note that the exact semantics of this flag depend on the underlying persistence provider. For any more advanced needs, specify the appropriate vendor-specific settings as "jpaProperties".
NOTE: Do not set this flag to 'true' while also setting JPA's
jakarta.persistence.schema-generation.database.action
property. These two schema generation mechanisms - standard JPA versus provider-native - are mutually exclusive, e.g. with Hibernate 5. -
isGenerateDdl
protected boolean isGenerateDdl()Return whether to generate DDL after the EntityManagerFactory has been initialized creating/updating all relevant tables. -
setShowSql
public void setShowSql(boolean showSql) Set whether to show SQL in the log (or in the console).For more specific logging configuration, specify the appropriate vendor-specific settings as "jpaProperties".
-
isShowSql
protected boolean isShowSql()Return whether to show SQL in the log (or in the console). -
getPersistenceProviderRootPackage
Description copied from interface:JpaVendorAdapter
Return the name of the persistence provider's root package (e.g. "oracle.toplink.essentials"). Will be used for excluding provider classes from temporary class overriding.- Specified by:
getPersistenceProviderRootPackage
in interfaceJpaVendorAdapter
-
getJpaPropertyMap
Description copied from interface:JpaVendorAdapter
Return a Map of vendor-specific JPA properties for the given persistence unit, typically based on settings in this JpaVendorAdapter instance.Note that there might be further JPA properties defined on the EntityManagerFactory bean, which might potentially override individual JPA property values specified here.
This implementation delegates to
JpaVendorAdapter.getJpaPropertyMap()
for non-unit-dependent properties. Effectively, this PersistenceUnitInfo-based variant only needs to be implemented if there is an actual need to react to unit-specific characteristics such as the transaction type.NOTE: This variant will only be invoked in case of Jakarta EE style container bootstrapping where a
PersistenceUnitInfo
is present (i.e.LocalContainerEntityManagerFactoryBean
). In case of simple Java SE style bootstrapping viaPersistence
(i.e.LocalEntityManagerFactoryBean
), the parameter-lessJpaVendorAdapter.getJpaPropertyMap()
variant will be called directly.- Specified by:
getJpaPropertyMap
in interfaceJpaVendorAdapter
- Parameters:
pui
- the PersistenceUnitInfo for the current persistence unit- Returns:
- a Map of JPA properties, as accepted by the standard JPA bootstrap facilities, or an empty Map if there are no properties to expose
- See Also:
-
getJpaPropertyMap
Description copied from interface:JpaVendorAdapter
Return a Map of vendor-specific JPA properties, typically based on settings in this JpaVendorAdapter instance.Note that there might be further JPA properties defined on the EntityManagerFactory bean, which might potentially override individual JPA property values specified here.
- Specified by:
getJpaPropertyMap
in interfaceJpaVendorAdapter
- Returns:
- a Map of JPA properties, as accepted by the standard JPA bootstrap facilities, or an empty Map if there are no properties to expose
- See Also:
-
getJpaDialect
Description copied from interface:JpaVendorAdapter
Return the vendor-specific JpaDialect implementation for this provider, ornull
if there is none.- Specified by:
getJpaDialect
in interfaceJpaVendorAdapter
-
getEntityManagerFactoryInterface
Description copied from interface:JpaVendorAdapter
Return the vendor-specific EntityManagerFactory interface that the EntityManagerFactory proxy is supposed to implement.If the provider does not offer any EntityManagerFactory extensions, the adapter should simply return the standard
EntityManagerFactory
class here.- Specified by:
getEntityManagerFactoryInterface
in interfaceJpaVendorAdapter
-
getEntityManagerInterface
Description copied from interface:JpaVendorAdapter
Return the vendor-specific EntityManager interface that this provider's EntityManagers will implement.If the provider does not offer any EntityManager extensions, the adapter should simply return the standard
EntityManager
class here.- Specified by:
getEntityManagerInterface
in interfaceJpaVendorAdapter
-
postProcessEntityManagerFactory
Description copied from interface:JpaVendorAdapter
Optional callback for post-processing the native EntityManagerFactory before active use.This can be used for triggering vendor-specific initialization processes. While this is not expected to be used for most providers, it is included here as a general extension hook.
- Specified by:
postProcessEntityManagerFactory
in interfaceJpaVendorAdapter
-
postProcessEntityManager
Description copied from interface:JpaVendorAdapter
Optional callback for post-processing the native EntityManager before active use.This can be used for setting vendor-specific parameters, e.g. Hibernate filters, on every new EntityManager.
- Specified by:
postProcessEntityManager
in interfaceJpaVendorAdapter
-