admin管理员组文章数量:1344979
I have observed that on migrating from spring-boot 3.3.x to 3.4.0, the contentType
header in the response is set to null
if the response is empty
.
I am not able to find when this change was made and related to which pull request.
Ex :
@Test
fun `should work`() {
webTestClient.post()
.uri("/test")
.header(CONTENT_TYPE, APPLICATION_JSON_VALUE)
.bodyValue("""{"gender": "MALE"}""")
.exchange()
.expectStatus().isOk
.expectHeader().contentType(APPLICATION_JSON)
}
Here the /test
endpoint just returns an empty response with Mono.empty()
.
I have started getting the below error after moving to spring-boot 3.4.0 :
java.lang.AssertionError: Response header 'Content-Type' expected:<application/json> but was:<null>
本文标签:
版权声明:本文标题:contentType header in response set to null when returning empty response after spring-boot 3.4.0 - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743792778a2539884.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论