一网通办如何推动政务服务的数字化转型与创新发展
1401
2022-11-24
SpringBoot获取http请求参数的方法
SpringBoot获取直接把表单里面的参数写进 Controller 相应方法的形参中去,这个获取参数的方法适合get提交,而不适合post提交。
/** * 1.直接把表单的参数写在Controller相应的方法的形参中 * @param username * @param password * @return */ @RequestMapping("/addUser") public String addUser(String username,String password) { System.out.println("username is:"+username); System.out.println("password is:"+password); return "demo/index"; }
url形式:提交的参数名称必须和Controller方法中定义的参数名称一致。
2. 使用 HttpServletRequest 获取参数,适用于post和get方法。
/** * 2、通过HttpServletRequest接收 * @param request * @return */ @RequestMapping("/addUser") public String addUser(HttpServletRequest request) { String username=request.getParameter("username"); String password=request.getParameter("password"); System.out.println("username is:"+username); System.out.println("password is:"+password); return "demo/index"; }
3. 通过建立一个bean来获取参数,适用于 post 和 get。 首先创建一个和表单对应的bean
package demo.model;public class UserModel { private String username; private String password; public String getUsername() { return username; } public void setUsername(String username) { this.username = username; } public String getPassword() { return password; } public void setPassword(String password) { this.password = password; }}
使用创建的 bean 来封装接收到前端传来的参数
/** * 3、通过一个bean来接收 * @param user * @return */ @RequestMapping("/addUser") public String addUser(UserModel user) { System.out.println("username is:"+user.getUsername()); System.out.println("password is:"+user.getPassword()); return "demo/index"; }
4. 通过 PathVariable 获取传进的参数。
/** * 4、通过@PathVariable获取路径中的参数 * @param username * @param password * @return */ @RequestMapping(value="/addUser/{username}/{password}",method=RequestMethod.GET)public String addUser(@PathVariable String username,@PathVariable String password) { System.out.println("username is:"+username); System.out.println("password is:"+password); return "demo/index"; }
例如,访问使用@ModelAttribute注解获取POST请求的FORM表单数据 jsp表单
Java Controller
/** * 5、使用@ModelAttribute注解获取POST请求的FORM表单数据 * @param user * @return */ @RequestMapping(value="/addUser",method=RequestMethod.POST) public String addUser(@ModelAttribute("user") UserModel user) { System.out.println("username is:"+user.getUsername()); System.out.println("password is:"+user.getPassword()); return "demo/index"; }
6. 用注解@RequestParam绑定请求参数到方法入参 当请求参数username不存在时会有异常发生,可以通过设置属性required=false解决,例如: @RequestParam(value="username", required=false)
/** * 6、用注解@RequestParam绑定请求参数到方法入参 * @param username * @param password * @return */@RequestMapping(value="/addUser",method=RequestMethod.GET)public String addUser(@RequestParam("username") String username,@RequestParam("password") String password) { System.out.println("username is:"+username); System.out.println("password is:"+password); return "demo/index";}
7. 用注解@RequestBody绑定请求参数到方法入参 用于POST请求
/** * 7、用注解@Requestbody绑定请求参数到方法入参 * @param username * @param password * @return */ @RequestMapping(value="/addUser",method=RequestMethod.POST) public String addUser(@RequestBody UserDTO userDTO) { System.out.println("username is:"+userDTO.getUserName()); System.out.println("password is:"+userDTO.getPassWord()); return "demo/index"; }//UserDTO 这个类为一个实体类,里面定义的属性与URL传过来的属性名一一对应。
以上为总结的七种后台springbooot获取前端传进参数的方法。
spring boot的@RequestParam和@RequestBody的区别
1、问题描述 由于项目是前后端分离,因此后台使用的是spring boot,做成微服务,只暴露接口。接口设计风格为restful的风格,在get请求下,后台接收参数的注解为RequestBody时会报错;在 post请求下,后台接收参数的注解为RequestParam时也会报错。
2、问题原因
由于spring的RequestParam注解接收的参数是来自于requestHeader中,即请求头,也就是在url中,格式为xxx?username=123&password=456,而RequestBody注解接收的参数则是来自于requestBody中,即请求体中。
3、解决方法
因此综上所述,如果为get请求时,后台接收参数的注解应该为RequestParam,如果为post请求时,则后台接收参数的注解就是为RequestBody。附上两个例子,截图如下:
【重要说明】本文为本人的学习记录,论点和观点仅代表个人而不代表当时技术的真理,目的是自我学习和有幸成为可以向他人分享的经验,因此有错误会虚心接受改正,但不代表此刻博文无误!
【Gitee地址】秦浩铖:https://gitee.com/wjw1014
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~