Spring MVC Controller接收参数方式
/** * 方式一:使用servlet原生的方式,request.getParameter("key")获取参数; * @param request * @param response * @return * @throws Exception */ @RequestMapping("/get1") ModelAndView get1(HttpServletRequest request,HttpServletResponse response) throws Exception{ String username=request.getParameter("username"); String password=request.getParameter("password"); return null; } /** * 方式二:同名规则接收传参 * @param username * @return * @throws Exception */ @RequestMapping("/get2") ModelAndView get2(String username)throws Exception{ return null; } /** * 方式二的另一种形式:前后台参数名不同,使用@RequestParam("前台参数名称")注解
* 如前台传参:username1,Controller中使用username * @param username * @return * @throws Exception */ @RequestMapping("/get3") ModelAndView get3(@RequestParam("username1")String username) throws Exception{ return null; } /** * 方式三:模型传参 * @param user * @return * @throws Exception */ @RequestMapping("/get4") ModelAndView get4(User user)throws Exception{ return null; }
/** * 方式四:使用地址栏传参,需要使用注解@PathVariable("parameter_name") * 如请求地址为:/get5/zhangsan * 此时地址栏的zhangsan会被当作username的参数值 * @param username * @return * @throws Exception */ @RequestMapping("/get5/{username}") ModelAndView get5(@PathVariable("username")String username)throws Exception{ return null; }
骑着母猪去打猎的备忘录,如有侵权请联系本人骑着母猪去打猎删除。https://www.cnblogs.com/shichq/p/16194783.html
如果本文对您有所帮助,麻烦在下面评论里面随便敲上那么几下键盘,谢谢了
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 【自荐】一款简洁、开源的在线白板工具 Drawnix
· 没有Manus邀请码?试试免邀请码的MGX或者开源的OpenManus吧
· 园子的第一款AI主题卫衣上架——"HELLO! HOW CAN I ASSIST YOU TODAY
· 无需6万激活码!GitHub神秘组织3小时极速复刻Manus,手把手教你使用OpenManus搭建本
· C#/.NET/.NET Core优秀项目和框架2025年2月简报