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、前端传输过来的参数没