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
10868519
Commit
10868519
authored
Jun 09, 2017
by
Andy Wilkinson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adapt to breaking API change in Spring Data Commons
parent
f5da19f2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
AbstractRepositoryConfigurationSourceSupport.java
...re/data/AbstractRepositoryConfigurationSourceSupport.java
+5
-4
No files found.
spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/data/AbstractRepositoryConfigurationSourceSupport.java
View file @
10868519
/*
/*
* Copyright 2012-201
5
the original author or authors.
* Copyright 2012-201
7
the original author or authors.
*
*
* Licensed under the Apache License, Version 2.0 (the "License");
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* you may not use this file except in compliance with the License.
...
@@ -33,6 +33,7 @@ import org.springframework.core.type.StandardAnnotationMetadata;
...
@@ -33,6 +33,7 @@ import org.springframework.core.type.StandardAnnotationMetadata;
import
org.springframework.data.repository.config.AnnotationRepositoryConfigurationSource
;
import
org.springframework.data.repository.config.AnnotationRepositoryConfigurationSource
;
import
org.springframework.data.repository.config.RepositoryConfigurationDelegate
;
import
org.springframework.data.repository.config.RepositoryConfigurationDelegate
;
import
org.springframework.data.repository.config.RepositoryConfigurationExtension
;
import
org.springframework.data.repository.config.RepositoryConfigurationExtension
;
import
org.springframework.data.util.Streamable
;
/**
/**
* Base {@link ImportBeanDefinitionRegistrar} used to auto-configure Spring Data
* Base {@link ImportBeanDefinitionRegistrar} used to auto-configure Spring Data
...
@@ -66,15 +67,15 @@ public abstract class AbstractRepositoryConfigurationSourceSupport
...
@@ -66,15 +67,15 @@ public abstract class AbstractRepositoryConfigurationSourceSupport
return
new
AnnotationRepositoryConfigurationSource
(
metadata
,
getAnnotation
(),
return
new
AnnotationRepositoryConfigurationSource
(
metadata
,
getAnnotation
(),
this
.
resourceLoader
,
this
.
environment
)
{
this
.
resourceLoader
,
this
.
environment
)
{
@Override
@Override
public
java
.
lang
.
Iter
able
<
String
>
getBasePackages
()
{
public
Stream
able
<
String
>
getBasePackages
()
{
return
AbstractRepositoryConfigurationSourceSupport
.
this
return
AbstractRepositoryConfigurationSourceSupport
.
this
.
getBasePackages
();
.
getBasePackages
();
}
}
};
};
}
}
protected
Iter
able
<
String
>
getBasePackages
()
{
protected
Stream
able
<
String
>
getBasePackages
()
{
return
AutoConfigurationPackages
.
get
(
this
.
beanFactory
);
return
Streamable
.
of
(
AutoConfigurationPackages
.
get
(
this
.
beanFactory
)
);
}
}
/**
/**
...
...
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