SpringMvc接收参数方法总结 SpringMvc框架中,接收参数是非常重要的一步骤,对于开发者来说,掌握多种接收参数的方法是非常有必要的。下面将总结SpringMvc框架中七种接收参数的方法。 第一种方法:HttpServletRequest方式 使用HttpServletRequest对象可以接收参数,例如: ```java public ModelAndView test1(HttpServletRequest req){ String userName = req.getParameter("userName"); String password = req.getParameter("password"); System.out.println(userName); System.out.println(password); return new ModelAndView("jsp/hello"); } ``` 这种方法可以直接从HttpServletRequest对象中获取参数,但是这种方法需要手动获取参数,比较麻烦。 第二种方法:@RequestParam方式 使用@RequestParam注解可以接收参数,例如: ```java public ModelAndView test2(String userName, @RequestParam("password") String pwd){ System.out.println(userName+","+pwd); return new ModelAndView("jsp/hello"); } ``` 这种方法可以使用@RequestParam注解指定参数的名称,比较方便。 第三种方法:对象的方式 使用对象的方式可以接收参数,例如: ```java public ModelAndView test3(User user){ System.out.println(user); return new ModelAndView("jsp/hello"); } ``` 这种方法可以使用对象的方式接收参数,比较方便。 第四种方法:ModelAndView传出参数 使用ModelAndView对象可以传出参数,例如: ```java @RequestMapping("action") public ModelAndView test4(User user){ Map<String, Object> data = new HashMap<String, Object>(); data.put("user", user); return new ModelAndView("jsp/hello",data); } ``` 这种方法可以使用ModelAndView对象传出参数,比较灵活。 第五种方法:Session的方式 使用Session对象可以存储参数,例如: ```java @RequestMapping("action") public ModelAndView test7(HttpServletRequest req){ HttpSession session = req.getSession(); session.setAttribute("salary", 6000.0); return new ModelAndView("jsp/hello"); } ``` 这种方法可以使用Session对象存储参数,比较方便。 第六种方法:重定向 使用重定向可以接收参数,例如: ```java @RequestMapping("/updateitem") public ModelAndView updateitem(Items items){ itemsService.updateitems(items); return new ModelAndView(new RedirectView("itemList.action")); } ``` 这种方法可以使用重定向接收参数,比较灵活。 第七种方法:Model和ModelMap 使用Model和ModelMap可以接收参数,例如: ```java @RequestMapping("/updateitem") public String updateitem(Items items){ itemsService.updateitems(items); return "redirect:itemList.action"; } ``` 这种方法可以使用Model和ModelMap接收参数,比较方便。 SpringMvc框架中有多种接收参数的方法,开发者可以根据实际情况选择合适的方法。
- 粉丝: 4
- 资源: 906
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助