您的位置:首页 > 编程语言 > Java开发

springMVC接受表单数据

2015-07-02 13:22 591 查看
1.@RequestParam

[java] view
plaincopyprint?

@RequestMapping(value = "/xxxx.do")

public void create(@RequestParam(value="userName") String userName) throws Exception {

}

2.@PathVariable

[java] view
plaincopyprint?

@RequestMapping(value="/{groupId}.do")

public void detail(@PathVariable long groupId){

groupRepository.selectOne(groupId);

}

3.@ModelAttribute

[java] view
plaincopyprint?

@RequestMapping(value = "/xxxx.do")

public String create(@ModelAttribute User user) throws Exception {

userService.insert(user);

return "redirect:/user/create.do";

}

4.Request对象

[java] view
plaincopyprint?

public ModelAndView method1(HttpServletRequest request,

HttpServletResponse respnose) throws ServletException, IOException {

Map model = new HashMap();

model.put("message", "你调用的是方法1");
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: