Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
e03f0156
Commit
e03f0156
authored
Aug 20, 2018
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Deprecate EntityManagerFactoryBeanCallback
Closes gh-14083
parent
e034b383
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
0 deletions
+5
-0
JpaBaseConfiguration.java
...work/boot/autoconfigure/orm/jpa/JpaBaseConfiguration.java
+2
-0
EntityManagerFactoryBuilder.java
...ngframework/boot/orm/jpa/EntityManagerFactoryBuilder.java
+3
-0
No files found.
spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/orm/jpa/JpaBaseConfiguration.java
View file @
e03f0156
...
...
@@ -116,6 +116,7 @@ public abstract class JpaBaseConfiguration implements BeanFactoryAware {
@Bean
@ConditionalOnMissingBean
@SuppressWarnings
(
"deprecation"
)
public
EntityManagerFactoryBuilder
entityManagerFactoryBuilder
(
JpaVendorAdapter
jpaVendorAdapter
,
ObjectProvider
<
PersistenceUnitManager
>
persistenceUnitManager
)
{
...
...
@@ -151,6 +152,7 @@ public abstract class JpaBaseConfiguration implements BeanFactoryAware {
protected
void
customizeVendorProperties
(
Map
<
String
,
Object
>
vendorProperties
)
{
}
@Deprecated
protected
EntityManagerFactoryBuilder
.
EntityManagerFactoryBeanCallback
getVendorCallback
()
{
return
null
;
}
...
...
spring-boot-project/spring-boot/src/main/java/org/springframework/boot/orm/jpa/EntityManagerFactoryBuilder.java
View file @
e03f0156
...
...
@@ -98,6 +98,7 @@ public class EntityManagerFactoryBuilder {
* An optional callback for new entity manager factory beans.
* @param callback the entity manager factory bean callback
*/
@Deprecated
public
void
setCallback
(
EntityManagerFactoryBeanCallback
callback
)
{
this
.
callback
=
callback
;
}
...
...
@@ -200,6 +201,7 @@ public class EntityManagerFactoryBuilder {
return
this
;
}
@SuppressWarnings
(
"deprecation"
)
public
LocalContainerEntityManagerFactoryBean
build
()
{
LocalContainerEntityManagerFactoryBean
entityManagerFactoryBean
=
new
LocalContainerEntityManagerFactoryBean
();
if
(
EntityManagerFactoryBuilder
.
this
.
persistenceUnitManager
!=
null
)
{
...
...
@@ -243,6 +245,7 @@ public class EntityManagerFactoryBuilder {
* A callback for new entity manager factory beans created by a Builder.
*/
@FunctionalInterface
@Deprecated
public
interface
EntityManagerFactoryBeanCallback
{
void
execute
(
LocalContainerEntityManagerFactoryBean
factory
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment