public final class EntityManagerFactoryBuilder.Builder extends Object
Modifier and Type | Method and Description |
---|---|
org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean |
build() |
EntityManagerFactoryBuilder.Builder |
jta(boolean jta)
Configure if using a JTA
DataSource , i.e. |
EntityManagerFactoryBuilder.Builder |
packages(Class<?>... basePackageClasses)
The classes whose packages should be scanned for
@Entity annotations. |
EntityManagerFactoryBuilder.Builder |
packages(String... packagesToScan)
The names of packages to scan for
@Entity annotations. |
EntityManagerFactoryBuilder.Builder |
persistenceUnit(String persistenceUnit)
The name of the persistence unit.
|
EntityManagerFactoryBuilder.Builder |
properties(Map<String,?> properties)
Generic properties for standard JPA or vendor-specific configuration.
|
public EntityManagerFactoryBuilder.Builder packages(String... packagesToScan)
@Entity
annotations.packagesToScan
- packages to scanpublic EntityManagerFactoryBuilder.Builder packages(Class<?>... basePackageClasses)
@Entity
annotations.basePackageClasses
- the classes to usepublic EntityManagerFactoryBuilder.Builder persistenceUnit(String persistenceUnit)
persistenceUnit
- the name of the persistence unitpublic EntityManagerFactoryBuilder.Builder properties(Map<String,?> properties)
properties
- the properties to usepublic EntityManagerFactoryBuilder.Builder jta(boolean jta)
DataSource
, i.e. if
setDataSource
or
setJtaDataSource
should be called on the
LocalContainerEntityManagerFactoryBean
.jta
- if the data source is JTApublic org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean build()
Copyright © 2017 Pivotal Software, Inc.. All rights reserved.