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
c544921e
Commit
c544921e
authored
Sep 24, 2013
by
Phillip Webb
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Polish whitespace
parent
15bc25dc
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
181 additions
and
180 deletions
+181
-180
AbstractRepositoryConfigurationSourceSupport.java
...re/data/AbstractRepositoryConfigurationSourceSupport.java
+4
-3
open_source_licenses.txt
...-boot-cli/src/main/content/legal/open_source_licenses.txt
+176
-176
SampleController.java
...ingframework/boot/sample/tomcat/web/SampleController.java
+1
-1
No files found.
spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/data/AbstractRepositoryConfigurationSourceSupport.java
View file @
c544921e
...
...
@@ -51,7 +51,8 @@ import org.springframework.data.repository.config.RepositoryConfigurationExtensi
* @author Oliver Gierke
*/
public
abstract
class
AbstractRepositoryConfigurationSourceSupport
implements
BeanFactoryAware
,
ImportBeanDefinitionRegistrar
,
BeanClassLoaderAware
,
EnvironmentAware
{
BeanFactoryAware
,
ImportBeanDefinitionRegistrar
,
BeanClassLoaderAware
,
EnvironmentAware
{
private
static
Log
logger
=
LogFactory
.
getLog
(
AbstractRepositoryConfigurationSourceSupport
.
class
);
...
...
@@ -59,7 +60,7 @@ public abstract class AbstractRepositoryConfigurationSourceSupport implements
private
ClassLoader
beanClassLoader
;
private
BeanFactory
beanFactory
;
private
Environment
environment
;
@Override
...
...
@@ -95,7 +96,7 @@ public abstract class AbstractRepositoryConfigurationSourceSupport implements
StandardAnnotationMetadata
metadata
=
new
StandardAnnotationMetadata
(
getConfiguration
(),
true
);
AnnotationRepositoryConfigurationSource
configurationSource
=
new
AnnotationRepositoryConfigurationSource
(
metadata
,
getAnnotation
(),
environment
)
{
metadata
,
getAnnotation
(),
this
.
environment
)
{
@Override
public
java
.
lang
.
Iterable
<
String
>
getBasePackages
()
{
...
...
spring-boot-cli/src/main/content/legal/open_source_licenses.txt
View file @
c544921e
This diff is collapsed.
Click to expand it.
spring-boot-samples/spring-boot-sample-tomcat/src/main/java/org/springframework/boot/sample/tomcat/web/SampleController.java
View file @
c544921e
...
...
@@ -27,7 +27,7 @@ public class SampleController {
@Autowired
private
HelloWorldService
helloWorldService
;
@RequestMapping
(
"/"
)
@ResponseBody
public
String
helloWorld
()
{
...
...
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