spring mvc中controller怎么接收页面表单提交的数据

spring mvc中controller怎么接收页面表单提交的数据,第1张

四种方式:

1@RequestParam

@RequestMapping(value = "/xxxxdo")

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

}

2@PathVariable

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

public void detail(@PathVariable long groupId){

groupRepositoryselectOne(groupId);

}

3@ModelAttribute

@RequestMapping(value = "/xxxxdo")

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

userServiceinsert(user);

return "redirect:/user/createdo";

}

4Request对象

public ModelAndView method1(>

2创建上传文件的filejsp

3Controller层创建代码

以上 *** 作步骤准确无误,本人JAVA学的很好。

定义一个单选按钮放在form表单里:然后通过StringstrRadio=requestgetParameter("radiobutton");获龋当提交那个form表单的时候,便会获取到单选揿钮radiobutton的值OK并赋值给strRadio。下面一个实例页面,页面文件名是RadioButtonjsp—

@RequestMapping("/test/save")

public String save(@RequestParam("param") List<String> paramList) {

return "redirect:/test怠乏糙何孬蛊茬坍长开47;list";

}

看看是你需要的吗?

如果您认可我的答案,请采纳。

您的采纳,是我答题的动力,O(∩_∩)O谢谢!!

以上就是关于spring mvc中controller怎么接收页面表单提交的数据全部的内容,包括:spring mvc中controller怎么接收页面表单提交的数据、java-SpringMVC 后台怎么获取前台jsp页面中file中的文件、Spring mvc中怎么获得jsp里面复选按钮和单选按钮的值等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/9756508.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-01
下一篇 2023-05-01

发表评论

登录后才能评论

评论列表(0条)

保存