错误信息无法解析服务器的重复标头,exception - 添加Content-Type标头时,无法解析对模拟服务器网络的期望 - 堆栈内存溢出...

我有一个集成测试,其中我在springboot 2.0应用程序中使用了模拟服务器网络(v5.3.0)..一切正常,但是如果我尝试添加Content-Type标头,则会出现以下异常:

java.lang.IllegalArgumentException: Exception while parsing [{

"httpRequest" : {

"method" : "POST",

"body" : {

"type" : "XML",

"xml" : "......"

},

"times" : {

"remainingTimes" : 0,

"unlimited" : true

},

"timeToLive" : {

"unlimited" : true

}

}] for Expectation

at org.mockserver.client.AbstractClient.sendRequest(AbstractClient.java:95)

at org.mockserver.client.AbstractClient.sendExpectation(AbstractClient.java:441)

at org.mockserver.client.ForwardChainExpectation.respond(ForwardChainExpectation.java:25)

期望如下:

{

"method" : "POST",

"body" : {

"type" : "XML",

"xml" : "......"

}

},

"httpResponse" : {

"statusCode" : 200,

"headers" : {

"Content-Type" : [ "text/xml" ]

},

"body" : "......."

},

"times" : {

"remainingTimes" : 0,

"unlimited" : true

},

"timeToLive" : {

"unlimited" : true

}

}

我用以下代码创建它:

private static HttpResponse responseWithBody(String responseBody, int statusCode, String contentType) {

return HttpResponse.response()

.withStatusCode(statusCode)

.withHeader("Content-Type",contentType)

.withBody(responseBody);

}

如果仅用.withHeader(“ Content-Type”,contentType)语句注释该行,则一切运行正常。 有什么线索吗? 非常感谢

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值