为了账号安全,请及时绑定邮箱和手机立即绑定

SpringMVC报400错误怎么修改,帮帮我,急

SpringMVC报400错误怎么修改,帮帮我,急

坐着竹筏漂流 2018-01-26 21:55:07
做了一个添加信息的demo,用了SpringMVC的form表单 //有一部分数据需要回显 <a href="emp">Add New Employee</a> //对应回显的控制器的方法 @RequestMapping(value="/emp",method = RequestMethod.GET) public String getDepts(Map<String, Object> map) {     map.put("departments", departmentDao.getDepartments());     map.put("employee", new Employee());     return "add"; } //添加信息的表单 <center>     <h4>添加员工</h4>     <form:form action="emp" method="POST" modelAttribute="employee">         <!-- path属性值对应HTML表单标签的name属性值 -->         Name:<form:input path="name"/>         <br><br>         Email:<form:input path="email"/>         <br><br>         <%             Map<String,String> genders = new HashMap<String,String>();             genders.put("0", "Male");             genders.put("1", "Female");             request.setAttribute("genders", genders);         %>         Gender:<form:radiobuttons path="gender" items="${genders}"/>         <br><br>         Department:<form:select path="dept" items="${departments}" itemLabel="name"                          itemValue="id"></form:select>         <br><br>         <input type="submit" value="点击提交">     </form:form> </center> //对应添加信息控制器的方法 @RequestMapping(value="/emp",method = RequestMethod.POST) public String addEmp(Employee employee) {     employeeDao.save(employee);     return "redirect:/emps"; }
查看完整描述

1 回答

?
fullee

TA贡献5条经验 获得超39个赞

http协议中400是指参数错误,你检查一下入参有没有问题

查看完整回答
反对 回复 2018-01-26
  • 1 回答
  • 0 关注
  • 1459 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信