|
|
@ -1,5 +1,5 @@ |
|
|
|
/* |
|
|
|
/* |
|
|
|
* Copyright 2002-2020 the original author or authors. |
|
|
|
* Copyright 2002-2022 the original author or authors. |
|
|
|
* |
|
|
|
* |
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
|
|
|
* you may not use this file except in compliance with the License. |
|
|
|
* you may not use this file except in compliance with the License. |
|
|
@ -136,7 +136,7 @@ public class BindingContext { |
|
|
|
return Mono.zip(Mono.just(vars), Mono.just(queryParams), formData, multipartData) |
|
|
|
return Mono.zip(Mono.just(vars), Mono.just(queryParams), formData, multipartData) |
|
|
|
.map(tuple -> { |
|
|
|
.map(tuple -> { |
|
|
|
Map<String, Object> result = new TreeMap<>(); |
|
|
|
Map<String, Object> result = new TreeMap<>(); |
|
|
|
tuple.getT1().forEach(result::put); |
|
|
|
result.putAll(tuple.getT1()); |
|
|
|
tuple.getT2().forEach((key, values) -> addBindValue(result, key, values)); |
|
|
|
tuple.getT2().forEach((key, values) -> addBindValue(result, key, values)); |
|
|
|
tuple.getT3().forEach((key, values) -> addBindValue(result, key, values)); |
|
|
|
tuple.getT3().forEach((key, values) -> addBindValue(result, key, values)); |
|
|
|
tuple.getT4().forEach((key, values) -> addBindValue(result, key, values)); |
|
|
|
tuple.getT4().forEach((key, values) -> addBindValue(result, key, values)); |
|
|
|