gpt4 book ai didi

spring - 未设置招摇注释内容类型

转载 作者:行者123 更新时间:2023-12-02 11:52:17 26 4
gpt4 key购买 nike

我有这个 Spring 休息 Controller :

@RestController
@RequestMapping("/communications")
class CommunicationController(private val service: CommunicationService) {

@ApiOperation(
produces = APPLICATION_JSON_VALUE,
consumes = APPLICATION_JSON_VALUE
)
@GetMapping(
consumes = [APPLICATION_JSON_VALUE],
produces = [APPLICATION_JSON_VALUE]
)
fun findAll(
criterias: CommunicationCriterias,
page: Pageable
): List<CommunicationDTO> = service.findCommunications(criterias, page)

}

当我通过 swagger-ui 测试此端点时(springfox) 界面,我有一个 415: content type invalid错误。看来 content-type: application/json没有在标题中设置。

什么不见​​了 ?

最佳答案

HTTP GET 请求中没有什么可消耗的。我认为您应该删除 consumes来自 @GetMapping@ApiOperation .

关于spring - 未设置招摇注释内容类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51933559/

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