|
15 | 15 | */
|
16 | 16 | package org.springframework.data.repository.config;
|
17 | 17 |
|
18 |
| -import java.lang.reflect.TypeVariable; |
19 |
| -import java.util.ArrayList; |
20 |
| -import java.util.Arrays; |
21 |
| -import java.util.Collection; |
22 |
| -import java.util.HashMap; |
23 |
| -import java.util.List; |
24 |
| -import java.util.Map; |
25 |
| -import java.util.stream.Collectors; |
26 |
| - |
27 | 18 | import org.apache.commons.logging.Log;
|
28 | 19 | import org.apache.commons.logging.LogFactory;
|
29 |
| - |
30 | 20 | import org.springframework.beans.factory.config.BeanDefinition;
|
31 | 21 | import org.springframework.beans.factory.config.ConfigurableBeanFactory;
|
32 | 22 | import org.springframework.beans.factory.config.DependencyDescriptor;
|
33 | 23 | import org.springframework.beans.factory.parsing.BeanComponentDefinition;
|
34 |
| -import org.springframework.beans.factory.support.AutowireCandidateResolver; |
35 |
| -import org.springframework.beans.factory.support.BeanDefinitionBuilder; |
36 |
| -import org.springframework.beans.factory.support.BeanDefinitionReaderUtils; |
37 |
| -import org.springframework.beans.factory.support.BeanDefinitionRegistry; |
38 |
| -import org.springframework.beans.factory.support.DefaultListableBeanFactory; |
39 |
| -import org.springframework.beans.factory.support.RootBeanDefinition; |
| 24 | +import org.springframework.beans.factory.support.*; |
40 | 25 | import org.springframework.context.annotation.ContextAnnotationAutowireCandidateResolver;
|
41 | 26 | import org.springframework.context.support.GenericApplicationContext;
|
42 | 27 | import org.springframework.core.ResolvableType;
|
|
57 | 42 | import org.springframework.util.Assert;
|
58 | 43 | import org.springframework.util.StopWatch;
|
59 | 44 |
|
| 45 | +import java.lang.reflect.TypeVariable; |
| 46 | +import java.util.*; |
| 47 | +import java.util.stream.Collectors; |
| 48 | + |
60 | 49 | /**
|
61 | 50 | * Delegate for configuration integration to reuse the general way of detecting repositories. Customization is done by
|
62 | 51 | * providing a configuration format specific {@link RepositoryConfigurationSource} (currently either XML or annotations
|
|
0 commit comments