【异常】SpringMVC提示异常Required request parameter ‘xxx‘ for method parameter type xxxx is not present
于 2022-11-03 14:38:31 首次发布
本文主要介绍了在SpringMVC中遇到的`Required request parameter 'xxx' for method parameter type xxxx is not present`异常。问题源于前端使用POST请求,而控制器方法使用了@RequestParam注解,该注解不适用于POST请求。解决方案是将请求参数改为@PathVariable或使用@RequestBody配合JSON解析。
摘要由CSDN通过智能技术生成