16
16
package org .springframework .data .web .querydsl ;
17
17
18
18
import java .util .Arrays ;
19
+ import java .util .Map ;
19
20
import java .util .Map .Entry ;
20
21
import java .util .Optional ;
21
22
22
23
import org .springframework .core .MethodParameter ;
23
24
import org .springframework .core .ResolvableType ;
24
25
import org .springframework .core .convert .ConversionService ;
25
- import org .springframework .data .querydsl .binding .QuerydslBinderCustomizer ;
26
- import org .springframework .data .querydsl .binding .QuerydslBindings ;
26
+ import org .springframework .core .convert .support .DefaultConversionService ;
27
27
import org .springframework .data .querydsl .binding .QuerydslBindingsFactory ;
28
- import org .springframework .data .querydsl .binding .QuerydslPredicate ;
29
- import org .springframework .data .util .CastUtils ;
30
- import org .springframework .data .util .TypeInformation ;
31
28
import org .springframework .lang .Nullable ;
32
29
import org .springframework .util .LinkedMultiValueMap ;
33
30
import org .springframework .util .MultiValueMap ;
46
43
* @author Christoph Strobl
47
44
* @author Oliver Gierke
48
45
* @author Matías Hermosilla
46
+ * @author Mark Paluch
49
47
* @since 1.11
50
48
*/
51
49
public class QuerydslPredicateArgumentResolver extends QuerydslPredicateArgumentResolverSupport
52
50
implements HandlerMethodArgumentResolver {
53
51
52
+ /**
53
+ * Create a new {@link QuerydslPredicateArgumentResolver}.
54
+ *
55
+ * @param factory the {@link QuerydslBindingsFactory} to use, must not be {@literal null}.
56
+ * @param conversionService the optional {@link ConversionService} to use, must not be {@literal null}. Defaults to
57
+ * {@link DefaultConversionService} if {@link Optional#empty() empty}.
58
+ */
54
59
public QuerydslPredicateArgumentResolver (QuerydslBindingsFactory factory ,
55
60
Optional <ConversionService > conversionService ) {
61
+ super (factory , conversionService .orElseGet (DefaultConversionService ::getSharedInstance ));
62
+ }
63
+
64
+ /**
65
+ * Create a new {@link QuerydslPredicateArgumentResolver}.
66
+ *
67
+ * @param factory the {@link QuerydslBindingsFactory} to use, must not be {@literal null}.
68
+ * @param conversionService the {@link ConversionService} to use, must not be {@literal null}.
69
+ * @since 2.5
70
+ */
71
+ public QuerydslPredicateArgumentResolver (QuerydslBindingsFactory factory , ConversionService conversionService ) {
56
72
super (factory , conversionService );
57
73
}
58
74
@@ -65,25 +81,8 @@ public QuerydslPredicateArgumentResolver(QuerydslBindingsFactory factory,
65
81
public Object resolveArgument (MethodParameter parameter , @ Nullable ModelAndViewContainer mavContainer ,
66
82
NativeWebRequest webRequest , @ Nullable WebDataBinderFactory binderFactory ) throws Exception {
67
83
68
- MultiValueMap <String , String > parameters = new LinkedMultiValueMap <>();
69
-
70
- for (Entry <String , String []> entry : webRequest .getParameterMap ().entrySet ()) {
71
- parameters .put (entry .getKey (), Arrays .asList (entry .getValue ()));
72
- }
73
-
74
- Optional <QuerydslPredicate > annotation = Optional
75
- .ofNullable (parameter .getParameterAnnotation (QuerydslPredicate .class ));
76
- TypeInformation <?> domainType = extractTypeInfo (parameter ).getRequiredActualType ();
77
-
78
- Optional <Class <? extends QuerydslBinderCustomizer <?>>> bindingsAnnotation = annotation //
79
- .map (QuerydslPredicate ::bindings ) //
80
- .map (CastUtils ::cast );
81
-
82
- QuerydslBindings bindings = bindingsAnnotation //
83
- .map (it -> bindingsFactory .createBindingsFor (domainType , it )) //
84
- .orElseGet (() -> bindingsFactory .createBindingsFor (domainType ));
85
-
86
- Predicate result = predicateBuilder .getPredicate (domainType , parameters , bindings );
84
+ MultiValueMap <String , String > queryParameters = getQueryParameters (webRequest );
85
+ Predicate result = getPredicate (parameter , queryParameters );
87
86
88
87
if (!parameter .isOptional () && result == null ) {
89
88
return new BooleanBuilder ();
@@ -94,4 +93,16 @@ public Object resolveArgument(MethodParameter parameter, @Nullable ModelAndViewC
94
93
: result ;
95
94
}
96
95
96
+ private static MultiValueMap <String , String > getQueryParameters (NativeWebRequest webRequest ) {
97
+
98
+ Map <String , String []> parameterMap = webRequest .getParameterMap ();
99
+ MultiValueMap <String , String > queryParameters = new LinkedMultiValueMap <>(parameterMap .size ());
100
+
101
+ for (Entry <String , String []> entry : parameterMap .entrySet ()) {
102
+ queryParameters .put (entry .getKey (), Arrays .asList (entry .getValue ()));
103
+ }
104
+
105
+ return queryParameters ;
106
+ }
107
+
97
108
}
0 commit comments