gpt4 book ai didi

spring-restdocs - 如何在 Spring REST Docs 中更改 curl 片段中的主机

转载 作者:行者123 更新时间:2023-12-04 07:18:31 25 4
gpt4 key购买 nike

Spring REST Docs 生成了一个 curl 片段,在测试时非常方便。它相当于 MockMvc调用如其文档中所述,但如果其主机部分可以替换为测试服务器的主机名(包括端口)而不是 localhost,那就太好了。 .是否有可能用它的当前版本来实现它?

最佳答案

您可以在创建 MockMvc 实例时配置主机(以及方案和端口):

this.mockMvc = MockMvcBuilders.webAppContextSetup(this.context)
.apply(documentationConfiguration(this.restDocumentation).uris()
.withScheme("https")
.withHost("example.com")
.withPort(443))
.build();

关于spring-restdocs - 如何在 Spring REST Docs 中更改 curl 片段中的主机,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33448963/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com