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() {
    }
}
上一篇:uniapp头部渐变背景app有效(H5端无效)


下一篇:Java 类文件结构