老迟到小虾米

文章
5
资源
0
加入时间
2年10月21天

Spring Boot Required String parameter ‘xxx‘ is not present问题解决

问题描述:org.springframework.web.bind.MissingServletRequestParameterException: Required String parameter 'password' is not present问题分析:1、@RequestParams注解用于POST和PUT方法,导致前端转参数过来,后端接收不到。解决办法:POST和PUT方法使用@RequestBody和@PathVariable注解接收前端传输的参数。2、前端传输过来的参数没