其他分享
首页 > 其他分享> > springboot集成swgger2错误解决(No enum constant org.springframework.web.bind.annotation.RequestMethod.GET,P

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() {
    }
}

标签:web,swgger2,constant,GET,xxx,value,RequestMethod,POST,httpMethod
来源: https://www.cnblogs.com/zuojin/p/14900880.html