15
15
*/
16
16
package org .springframework .data .querydsl .binding ;
17
17
18
+ import java .util .List ;
18
19
import java .util .Map ;
19
20
import java .util .Optional ;
21
+ import java .util .stream .Collectors ;
20
22
21
23
import org .springframework .beans .BeanUtils ;
22
24
import org .springframework .beans .BeansException ;
37
39
*
38
40
* @author Oliver Gierke
39
41
* @author Christoph Strobl
42
+ * @author Mark Paluch
40
43
* @since 1.11
41
44
*/
42
45
public class QuerydslBindingsFactory implements ApplicationContextAware {
@@ -48,6 +51,7 @@ public class QuerydslBindingsFactory implements ApplicationContextAware {
48
51
49
52
private Optional <AutowireCapableBeanFactory > beanFactory ;
50
53
private Optional <Repositories > repositories ;
54
+ private QuerydslBinderCustomizer <EntityPath <?>> defaultCustomizer ;
51
55
52
56
/**
53
57
* Creates a new {@link QuerydslBindingsFactory} using the given {@link EntityPathResolver}.
@@ -62,6 +66,7 @@ public QuerydslBindingsFactory(EntityPathResolver entityPathResolver) {
62
66
this .entityPaths = new ConcurrentReferenceHashMap <>();
63
67
this .beanFactory = Optional .empty ();
64
68
this .repositories = Optional .empty ();
69
+ this .defaultCustomizer = NoOpCustomizer .INSTANCE ;
65
70
}
66
71
67
72
/*
@@ -73,6 +78,7 @@ public void setApplicationContext(ApplicationContext applicationContext) throws
73
78
74
79
this .beanFactory = Optional .of (applicationContext .getAutowireCapableBeanFactory ());
75
80
this .repositories = Optional .of (new Repositories (applicationContext ));
81
+ this .defaultCustomizer = findDefaultCustomizer ();
76
82
}
77
83
78
84
/**
@@ -126,6 +132,7 @@ private QuerydslBindings createBindingsFor(TypeInformation<?> domainType,
126
132
EntityPath <?> path = verifyEntityPathPresent (domainType );
127
133
128
134
QuerydslBindings bindings = new QuerydslBindings ();
135
+ defaultCustomizer .customize (bindings , path );
129
136
findCustomizerForDomainType (customizer , domainType .getType ()).customize (bindings , path );
130
137
131
138
return bindings ;
@@ -151,9 +158,32 @@ private EntityPath<?> verifyEntityPathPresent(TypeInformation<?> candidate) {
151
158
});
152
159
}
153
160
161
+ /**
162
+ * Obtains registered {@link DefaultQuerydslBinderCustomizer} instances from the
163
+ * {@link org.springframework.beans.factory.BeanFactory}.
164
+ *
165
+ * @return
166
+ */
167
+ private QuerydslBinderCustomizer <EntityPath <?>> findDefaultCustomizer () {
168
+ return beanFactory .map (this ::getDefaultQuerydslBinderCustomizer ).orElse (NoOpCustomizer .INSTANCE );
169
+ }
170
+
171
+ private QuerydslBinderCustomizer <EntityPath <?>> getDefaultQuerydslBinderCustomizer (
172
+ AutowireCapableBeanFactory beanFactory ) {
173
+
174
+ List <DefaultQuerydslBinderCustomizer > customizers = beanFactory
175
+ .getBeanProvider (DefaultQuerydslBinderCustomizer .class ).stream ().collect (Collectors .toList ());
176
+
177
+ return (bindings , root ) -> {
178
+ for (DefaultQuerydslBinderCustomizer defaultQuerydslBinderCustomizer : customizers ) {
179
+ defaultQuerydslBinderCustomizer .customize (bindings , root );
180
+ }
181
+ };
182
+ }
183
+
154
184
/**
155
185
* Obtains the {@link QuerydslBinderCustomizer} for the given domain type. Will inspect the given annotation for a
156
- * dedicatedly configured one or consider the domain types 's repository.
186
+ * dedicated configured one or consider the domain type 's repository.
157
187
*
158
188
* @param annotation
159
189
* @param domainType
@@ -194,7 +224,7 @@ private QuerydslBinderCustomizer<EntityPath<?>> createQuerydslBinderCustomizer(
194
224
}).orElseGet (() -> BeanUtils .instantiateClass (type ));
195
225
}
196
226
197
- private static enum NoOpCustomizer implements QuerydslBinderCustomizer <EntityPath <?>> {
227
+ private enum NoOpCustomizer implements QuerydslBinderCustomizer <EntityPath <?>> {
198
228
199
229
INSTANCE ;
200
230
0 commit comments