15
15
*/
16
16
package org .springframework .data .web ;
17
17
18
- import com .fasterxml .jackson .databind .DeserializationFeature ;
19
18
import com .fasterxml .jackson .databind .JavaType ;
20
19
import com .fasterxml .jackson .databind .ObjectMapper ;
21
20
import com .jayway .jsonpath .spi .json .JacksonJsonProvider ;
39
38
import reactor .core .publisher .Flux ;
40
39
import reactor .core .publisher .Mono ;
41
40
42
- import java .math .BigDecimal ;
43
41
import java .util .Map ;
44
42
import java .util .concurrent .atomic .AtomicReference ;
45
43
46
44
/**
47
- * {@link org.springframework.http.codec.HttpMessageDecoder} implementation to enable projected JSON binding to interfaces annotated with
48
- * {@link ProjectedPayload}.
45
+ * {@link org.springframework.http.codec.HttpMessageDecoder} implementation to enable projected JSON binding to
46
+ * interfaces annotated with {@link ProjectedPayload}.
49
47
*
50
48
* @author Matías Hermosilla
51
49
* @since 3.0
@@ -138,8 +136,8 @@ public boolean canDecode(ResolvableType elementType, @Nullable MimeType mimeType
138
136
}
139
137
140
138
@ Override
141
- public Flux <Object > decode (Publisher <DataBuffer > input , ResolvableType elementType ,
142
- @ Nullable MimeType mimeType , @ Nullable Map <String , Object > hints ) {
139
+ public Flux <Object > decode (Publisher <DataBuffer > input , ResolvableType elementType , @ Nullable MimeType mimeType ,
140
+ @ Nullable Map <String , Object > hints ) {
143
141
144
142
ObjectMapper mapper = selectObjectMapper (elementType , mimeType );
145
143
if (mapper == null ) {
@@ -150,7 +148,7 @@ public Flux<Object> decode(Publisher<DataBuffer> input, ResolvableType elementTy
150
148
151
149
return DataBufferUtils .join (processed , this .getMaxInMemorySize ())
152
150
.flatMap (dataBuffer -> Mono .just (decode (dataBuffer , elementType , mimeType , hints )))
153
- .expand (object -> {
151
+ .flatMapMany (object -> {
154
152
if (object instanceof Iterable ) {
155
153
return Flux .fromIterable ((Iterable ) object );
156
154
}
@@ -159,8 +157,8 @@ public Flux<Object> decode(Publisher<DataBuffer> input, ResolvableType elementTy
159
157
}
160
158
161
159
@ Override
162
- public Object decode (DataBuffer dataBuffer , ResolvableType targetType ,
163
- @ Nullable MimeType mimeType , @ Nullable Map <String , Object > hints ) throws DecodingException {
160
+ public Object decode (DataBuffer dataBuffer , ResolvableType targetType , @ Nullable MimeType mimeType ,
161
+ @ Nullable Map <String , Object > hints ) throws DecodingException {
164
162
165
163
return projectionFactory .createProjection (ResolvableType .forType (targetType .getType ()).resolve (Object .class ),
166
164
dataBuffer .asInputStream ());
0 commit comments