springMVC中使用 RequestBody POST请求 415 (Unsupported Media Type)
3 月,跳不动了?>>> 前端代码: < html > < head > < base href ="<%=basePath %>" /> < meta http-equiv ="Content-Type" content ="text/html; charset=utf-8" /> < title > Insert title here </ title > </ head > < body > < form method ="post" action ="<%=basePath%>user/login2" > < label for ="name" > 用户名 </ label > < input id ="name" type ="text" name ="username" > < br > < label for ="pass" > 密码 </ label > < input id ="pass" type ="text" name ="password" > < button type ="submit" > 提交 </ button > </ form > </ body > </ html > 后端代码: @PostMapping("/login2" ) public String loginLogic2(@RequestBody User user) {