码迷,mamicode.com
首页 > 编程语言 > 详细

SpringMVC 接收表单数据的方式 - Samuel - 博客频道 - CSDN.NET

时间:2014-10-22 21:54:03      阅读:418      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   ar   java   sp   

1.@RequestParam

  1. @RequestMapping(value = "/xxxx.do")  
  2. public void create(@RequestParam(value="userName") String userName) throws Exception {  
  3.       
  4. }  


2.@PathVariable

  1. @RequestMapping(value="/{groupId}.do")  
  2. public void detail(@PathVariable long groupId){  
  3.     groupRepository.selectOne(groupId);  
  4. }  

3.@ModelAttribute

  1. @RequestMapping(value = "/xxxx.do")  
  2. public String create(@ModelAttribute User user) throws Exception {  
  3.     userService.insert(user);  
  4.     return "redirect:/user/create.do";  
  5. }  


4.Request对象

  1. public ModelAndView method1(HttpServletRequest request,  
  2.            HttpServletResponse respnose) throws ServletException, IOException {  
  3.        Map model = new HashMap();  
  4.        model.put("message""你调用的是方法1");  
  5.         return new ModelAndView("/index.jsp""model", model);  
  6.  }  




SpringMVC 接收表单数据的方式 - Samuel - 博客频道 - CSDN.NET

标签:style   blog   http   color   io   os   ar   java   sp   

原文地址:http://www.cnblogs.com/wang3680/p/b8e623e787f29ceda429d045ebbf09d4.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!