微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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; }

 

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐