SpringBoot项目启动报错No enum constant org.springframework.web.bind.annotation.Request

最近接手一个项目,启动的时候报了个错No enum constant org.springframework.web.bind.annotation.Request。这种问题,通常是整合swagger2出现的。打开RequestMethod这个枚举类,里面方法都是大写的。

SpringBoot项目启动报错No enum constant org.springframework.web.bind.annotation.Request_第1张图片

但是在使用的时候写成了小写,导致无法匹配

解决方法,将蓝框里面的Get改成GET即可。

 

 

 

 

你可能感兴趣的:(SpringBoot项目启动报错No enum constant org.springframework.web.bind.annotation.Request)