springboot集成swgger2错误解决(No enum constant org.springframework.web.bind.annotation.RequestMethod.GET,P

Posted 左瑾

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot集成swgger2错误解决(No enum constant org.springframework.web.bind.annotation.RequestMethod.GET,P相关的知识,希望对你有一定的参考价值。

出现这个问题的原因,是因为swgger2中没有对应的枚举类导致的;
RequestMethod.GET,POST 后面跟的是什么,那么就是由于什么原因导致的
get:表示有 @ApiOperation(value = "xxx", httpMethod = "get")
post:表示有 @ApiOperation(value = "xxx", httpMethod = "post")

处理办法:改成这些就好了
例如::@ApiOperation(value = "xxx", httpMethod = "POST")

public enum RequestMethod {
    GET,
    HEAD,
    POST,
    PUT,
    PATCH,
    DELETE,
    OPTIONS,
    TRACE;
    private RequestMethod() {
    }
}

以上是关于springboot集成swgger2错误解决(No enum constant org.springframework.web.bind.annotation.RequestMethod.GET,P的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot集成MybatisPlus报错

大数据-kafka学习——集成SpringBoot

springboot集成easyExcel写入读取数据为空的问题

springboot集成easyExcel写入读取数据为空的问题

SpringBoot集成Swagger步骤详解及遇到类型转换错误+400

关于springboot maven项目中的一个奇葩错误的解决方案