Index
All Classes and Interfaces|All Packages
B
- build() - Method in class org.springframework.boot.jpa.EntityManagerFactoryBuilder.Builder
C
- createJpaVendorAdapter() - Method in class org.springframework.boot.jpa.autoconfigure.JpaBaseConfiguration
- customize(EntityManagerFactoryBuilder) - Method in interface org.springframework.boot.jpa.autoconfigure.EntityManagerFactoryBuilderCustomizer
-
Customize the given
builder. - customizeVendorProperties(Map<String, Object>) - Method in class org.springframework.boot.jpa.autoconfigure.JpaBaseConfiguration
-
Customize vendor properties before they are used.
D
- dataSource(DataSource) - Method in class org.springframework.boot.jpa.EntityManagerFactoryBuilder
-
Create a new
EntityManagerFactoryBuilder.Builderfor aEntityManagerFactoryusing the settings of the given instance, and the givenDataSource.
E
- entityManagerFactory(EntityManagerFactoryBuilder, PersistenceManagedTypes) - Method in class org.springframework.boot.jpa.autoconfigure.JpaBaseConfiguration
- entityManagerFactoryBuilder(JpaVendorAdapter, ObjectProvider<PersistenceUnitManager>, ObjectProvider<EntityManagerFactoryBuilderCustomizer>) - Method in class org.springframework.boot.jpa.autoconfigure.JpaBaseConfiguration
- EntityManagerFactoryBuilder - Class in org.springframework.boot.jpa
-
Convenient builder for JPA EntityManagerFactory instances.
- EntityManagerFactoryBuilder(JpaVendorAdapter, Function<DataSource, Map<String, ?>>, PersistenceUnitManager) - Constructor for class org.springframework.boot.jpa.EntityManagerFactoryBuilder
-
Create a new instance passing in the common pieces that will be shared if multiple EntityManagerFactory instances are created.
- EntityManagerFactoryBuilder(JpaVendorAdapter, Function<DataSource, Map<String, ?>>, PersistenceUnitManager, URL) - Constructor for class org.springframework.boot.jpa.EntityManagerFactoryBuilder
-
Create a new instance passing in the common pieces that will be shared if multiple EntityManagerFactory instances are created.
- EntityManagerFactoryBuilder.Builder - Class in org.springframework.boot.jpa
-
A fluent builder for a LocalContainerEntityManagerFactoryBean.
- EntityManagerFactoryBuilderCustomizer - Interface in org.springframework.boot.jpa.autoconfigure
-
Callback interface that can be used to customize the
EntityManagerFactoryBuilderto fine-tune its auto-configuration. - EntityManagerFactoryDependsOnPostProcessor - Class in org.springframework.boot.jpa.autoconfigure
-
BeanFactoryPostProcessorthat can be used to dynamically declare that allEntityManagerFactorybeans should "depend on" one or more specific beans. - EntityManagerFactoryDependsOnPostProcessor(Class<?>...) - Constructor for class org.springframework.boot.jpa.autoconfigure.EntityManagerFactoryDependsOnPostProcessor
-
Creates a new
EntityManagerFactoryDependsOnPostProcessorthat will set up dependencies upon beans with the given types. - EntityManagerFactoryDependsOnPostProcessor(String...) - Constructor for class org.springframework.boot.jpa.autoconfigure.EntityManagerFactoryDependsOnPostProcessor
-
Creates a new
EntityManagerFactoryDependsOnPostProcessorthat will set up dependencies upon beans with the given names.
G
- getDatabase() - Method in class org.springframework.boot.jpa.autoconfigure.JpaProperties
- getDatabasePlatform() - Method in class org.springframework.boot.jpa.autoconfigure.JpaProperties
- getDataSource() - Method in class org.springframework.boot.jpa.autoconfigure.JpaBaseConfiguration
-
Return the
DataSource. - getJtaTransactionManager() - Method in class org.springframework.boot.jpa.autoconfigure.JpaBaseConfiguration
-
Return the JTA transaction manager.
- getMappingResources() - Method in class org.springframework.boot.jpa.autoconfigure.JpaProperties
- getOpenInView() - Method in class org.springframework.boot.jpa.autoconfigure.JpaProperties
- getProperties() - Method in class org.springframework.boot.jpa.autoconfigure.JpaBaseConfiguration
-
Return the
JpaProperties. - getProperties() - Method in class org.springframework.boot.jpa.autoconfigure.JpaProperties
- getVendorProperties(DataSource) - Method in class org.springframework.boot.jpa.autoconfigure.JpaBaseConfiguration
-
Return the vendor-specific properties for the given
DataSource.
I
- isGenerateDdl() - Method in class org.springframework.boot.jpa.autoconfigure.JpaProperties
- isJta() - Method in class org.springframework.boot.jpa.autoconfigure.JpaBaseConfiguration
-
Returns if a JTA
PlatformTransactionManageris being used. - isShowSql() - Method in class org.springframework.boot.jpa.autoconfigure.JpaProperties
J
- JpaBaseConfiguration - Class in org.springframework.boot.jpa.autoconfigure
-
Base
Auto-configurationfor JPA. - JpaBaseConfiguration(DataSource, JpaProperties, ObjectProvider<JtaTransactionManager>) - Constructor for class org.springframework.boot.jpa.autoconfigure.JpaBaseConfiguration
- JpaBaseConfiguration.JpaWebConfiguration - Class in org.springframework.boot.jpa.autoconfigure
- JpaProperties - Class in org.springframework.boot.jpa.autoconfigure
-
External configuration properties for a JPA EntityManagerFactory created by Spring.
- JpaProperties() - Constructor for class org.springframework.boot.jpa.autoconfigure.JpaProperties
- jpaVendorAdapter() - Method in class org.springframework.boot.jpa.autoconfigure.JpaBaseConfiguration
- JpaWebConfiguration(JpaProperties) - Constructor for class org.springframework.boot.jpa.autoconfigure.JpaBaseConfiguration.JpaWebConfiguration
- jta(boolean) - Method in class org.springframework.boot.jpa.EntityManagerFactoryBuilder.Builder
-
Configure if using a JTA
DataSource, i.e.
M
- managedTypes(PersistenceManagedTypes) - Method in class org.springframework.boot.jpa.EntityManagerFactoryBuilder.Builder
-
The persistence managed types, providing both the managed entities and packages the entity manager should consider.
- mappingResources(String...) - Method in class org.springframework.boot.jpa.EntityManagerFactoryBuilder.Builder
-
The mapping resources (equivalent to
<mapping-file>entries inpersistence.xml) for the persistence unit.
O
- openEntityManagerInViewInterceptor() - Method in class org.springframework.boot.jpa.autoconfigure.JpaBaseConfiguration.JpaWebConfiguration
- openEntityManagerInViewInterceptorConfigurer(OpenEntityManagerInViewInterceptor) - Method in class org.springframework.boot.jpa.autoconfigure.JpaBaseConfiguration.JpaWebConfiguration
- org.springframework.boot.jpa - package org.springframework.boot.jpa
-
JPA Support classes.
- org.springframework.boot.jpa.autoconfigure - package org.springframework.boot.jpa.autoconfigure
-
Base Auto-configuration for JPA and Spring ORM.
P
- packages(Class<?>...) - Method in class org.springframework.boot.jpa.EntityManagerFactoryBuilder.Builder
-
The classes whose packages should be scanned for
@Entityannotations. - packages(String...) - Method in class org.springframework.boot.jpa.EntityManagerFactoryBuilder.Builder
-
The names of packages to scan for
@Entityannotations. - persistenceUnit(String) - Method in class org.springframework.boot.jpa.EntityManagerFactoryBuilder.Builder
-
The name of the persistence unit.
- properties(Map<String, ?>) - Method in class org.springframework.boot.jpa.EntityManagerFactoryBuilder.Builder
-
Generic properties for standard JPA or vendor-specific configuration.
S
- setBootstrapExecutor(AsyncTaskExecutor) - Method in class org.springframework.boot.jpa.EntityManagerFactoryBuilder
-
Configure the bootstrap executor to be used by the
LocalContainerEntityManagerFactoryBean. - setDatabase(Database) - Method in class org.springframework.boot.jpa.autoconfigure.JpaProperties
- setDatabasePlatform(String) - Method in class org.springframework.boot.jpa.autoconfigure.JpaProperties
- setGenerateDdl(boolean) - Method in class org.springframework.boot.jpa.autoconfigure.JpaProperties
- setOpenInView(Boolean) - Method in class org.springframework.boot.jpa.autoconfigure.JpaProperties
- setPersistenceUnitPostProcessors(PersistenceUnitPostProcessor...) - Method in class org.springframework.boot.jpa.EntityManagerFactoryBuilder
-
Set the persistence unit post processors to be applied to the PersistenceUnitInfo used for creating the
LocalContainerEntityManagerFactoryBean. - setProperties(Map<String, String>) - Method in class org.springframework.boot.jpa.autoconfigure.JpaProperties
- setShowSql(boolean) - Method in class org.springframework.boot.jpa.autoconfigure.JpaProperties
T
- transactionManager(ObjectProvider<TransactionManagerCustomizers>) - Method in class org.springframework.boot.jpa.autoconfigure.JpaBaseConfiguration
All Classes and Interfaces|All Packages