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
d9a42a51
Commit
d9a42a51
authored
Aug 20, 2018
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '2.0.x'
parents
f804d5ce
e03f0156
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
5 deletions
+3
-5
JpaBaseConfiguration.java
...work/boot/autoconfigure/orm/jpa/JpaBaseConfiguration.java
+0
-5
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 @
d9a42a51
...
@@ -124,7 +124,6 @@ public abstract class JpaBaseConfiguration implements BeanFactoryAware {
...
@@ -124,7 +124,6 @@ public abstract class JpaBaseConfiguration implements BeanFactoryAware {
EntityManagerFactoryBuilder
builder
=
new
EntityManagerFactoryBuilder
(
EntityManagerFactoryBuilder
builder
=
new
EntityManagerFactoryBuilder
(
jpaVendorAdapter
,
this
.
properties
.
getProperties
(),
jpaVendorAdapter
,
this
.
properties
.
getProperties
(),
persistenceUnitManager
.
getIfAvailable
());
persistenceUnitManager
.
getIfAvailable
());
builder
.
setCallback
(
getVendorCallback
());
for
(
EntityManagerFactoryBuilderCustomizer
customizer
:
customizers
for
(
EntityManagerFactoryBuilderCustomizer
customizer
:
customizers
.
getIfAvailable
(
Collections:
:
emptyList
))
{
.
getIfAvailable
(
Collections:
:
emptyList
))
{
customizer
.
customize
(
builder
);
customizer
.
customize
(
builder
);
...
@@ -157,10 +156,6 @@ public abstract class JpaBaseConfiguration implements BeanFactoryAware {
...
@@ -157,10 +156,6 @@ public abstract class JpaBaseConfiguration implements BeanFactoryAware {
protected
void
customizeVendorProperties
(
Map
<
String
,
Object
>
vendorProperties
)
{
protected
void
customizeVendorProperties
(
Map
<
String
,
Object
>
vendorProperties
)
{
}
}
protected
EntityManagerFactoryBuilder
.
EntityManagerFactoryBeanCallback
getVendorCallback
()
{
return
null
;
}
protected
String
[]
getPackagesToScan
()
{
protected
String
[]
getPackagesToScan
()
{
List
<
String
>
packages
=
EntityScanPackages
.
get
(
this
.
beanFactory
)
List
<
String
>
packages
=
EntityScanPackages
.
get
(
this
.
beanFactory
)
.
getPackageNames
();
.
getPackageNames
();
...
...
spring-boot-project/spring-boot/src/main/java/org/springframework/boot/orm/jpa/EntityManagerFactoryBuilder.java
View file @
d9a42a51
...
@@ -111,6 +111,7 @@ public class EntityManagerFactoryBuilder {
...
@@ -111,6 +111,7 @@ public class EntityManagerFactoryBuilder {
* An optional callback for new entity manager factory beans.
* An optional callback for new entity manager factory beans.
* @param callback the entity manager factory bean callback
* @param callback the entity manager factory bean callback
*/
*/
@Deprecated
public
void
setCallback
(
EntityManagerFactoryBeanCallback
callback
)
{
public
void
setCallback
(
EntityManagerFactoryBeanCallback
callback
)
{
this
.
callback
=
callback
;
this
.
callback
=
callback
;
}
}
...
@@ -213,6 +214,7 @@ public class EntityManagerFactoryBuilder {
...
@@ -213,6 +214,7 @@ public class EntityManagerFactoryBuilder {
return
this
;
return
this
;
}
}
@SuppressWarnings
(
"deprecation"
)
public
LocalContainerEntityManagerFactoryBean
build
()
{
public
LocalContainerEntityManagerFactoryBean
build
()
{
LocalContainerEntityManagerFactoryBean
entityManagerFactoryBean
=
new
LocalContainerEntityManagerFactoryBean
();
LocalContainerEntityManagerFactoryBean
entityManagerFactoryBean
=
new
LocalContainerEntityManagerFactoryBean
();
if
(
EntityManagerFactoryBuilder
.
this
.
persistenceUnitManager
!=
null
)
{
if
(
EntityManagerFactoryBuilder
.
this
.
persistenceUnitManager
!=
null
)
{
...
@@ -260,6 +262,7 @@ public class EntityManagerFactoryBuilder {
...
@@ -260,6 +262,7 @@ public class EntityManagerFactoryBuilder {
* A callback for new entity manager factory beans created by a Builder.
* A callback for new entity manager factory beans created by a Builder.
*/
*/
@FunctionalInterface
@FunctionalInterface
@Deprecated
public
interface
EntityManagerFactoryBeanCallback
{
public
interface
EntityManagerFactoryBeanCallback
{
void
execute
(
LocalContainerEntityManagerFactoryBean
factory
);
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