首页 > 编程语言 > 详细

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

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

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

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!