gpt4 book ai didi

spring - 如何在 Spring Boot 测试中指定 text/plain;charset=UTF-8 的媒体类型

转载 作者:行者123 更新时间:2023-12-04 16:27:00 29 4
gpt4 key购买 nike

这是我的测试:

 @Test
fun `test config properties`() {
mockMvc.request(HttpMethod.GET,"someUrl") {
accept = MediaType.TEXT_PLAIN
}.andExpect {
status { isOk }
content { contentType(MediaType.TEXT_PLAIN) }
}
}

它失败了:

Expected :text/plain Actual :text/plain;charset=UTF-8

这是将 Kotlin DSL 用于 MockMVC。

如何更改接受以允许 charset=UTF-8 ?

最佳答案

有一种工厂方法可以接受自定义值。试试:

MediaType.valueOf("text/plain;charset=UTF-8")

关于spring - 如何在 Spring Boot 测试中指定 text/plain;charset=UTF-8 的媒体类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62148127/

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