|
@@ -98,7 +98,8 @@ public class RequestHandler extends MagicController {
|
|
.request(request)
|
|
.request(request)
|
|
.response(response)
|
|
.response(response)
|
|
.requestedFromTest(requestedFromTest)
|
|
.requestedFromTest(requestedFromTest)
|
|
- .pathVariables(pathVariables)
|
|
|
|
|
|
+ // 兼容 spring boot 3.0
|
|
|
|
+ .pathVariables(new HashMap<>(pathVariables))
|
|
.parameters(parameters);
|
|
.parameters(parameters);
|
|
ApiInfo info = requestEntity.getApiInfo();
|
|
ApiInfo info = requestEntity.getApiInfo();
|
|
if (info == null) {
|
|
if (info == null) {
|