springmvc后台控制层获取参数的方法

在SpringMVC后台控制层获取参数的方式主要有两种,

一种是request.getParameter("name"),

另外一种是用注解@RequestParam直接获取。这里主要讲这个注解

一、基本使用,获取提交的参数 
后端代码:

Java代码  

  1. @RequestMapping("testRequestParam")
  2. public String filesUpload(@RequestParam String inputStr, HttpServletRequest request) {
  3. System.out.println(inputStr);
  4. int inputInt = Integer.valueOf(request.getParameter("inputInt"));
  5. System.out.println(inputInt);
  6. // ......省略
  7. return "index";
  8. }

前端代码:

Html代码  

  1. <form action="/gadget/testRequestParam" method="post">
  2. 参数inputStr:<input type="text" name="inputStr">
  3. 参数intputInt:<input type="text" name="inputInt">
  4. </form>

前端界面: 

执行结果: 
test1 
123

可以看到spring会自动根据参数名字封装进入,我们可以直接拿这个参数名来用

二、各种异常情况处理 
1、可以对传入参数指定参数名

Java代码  

  1. @RequestParam String inputStr
  2. // 下面的对传入参数指定为aa,如果前端不传aa参数名,会报错
  3. @RequestParam(value="aa") String inputStr

错误信息: 
HTTP Status 400 - Required String parameter ‘aa‘ is not present

2、可以通过required=false或者true来要求@RequestParam配置的前端参数是否一定要传

Java代码  

  1. // required=false表示不传的话,会给参数赋值为null,required=true就是必须要有
  2. @RequestMapping("testRequestParam")
  3. public String filesUpload(@RequestParam(value="aa", required=true) String inputStr, HttpServletRequest request)

3、如果用@RequestMapping注解的参数是int基本类型,但是required=false,这时如果不传参数值会报错,因为不传值,会赋值为null给int,这个不可以

Java代码  

  1. @RequestMapping("testRequestParam")
  2. public String filesUpload(@RequestParam(value="aa", required=true) String inputStr,
  3. @RequestParam(value="inputInt", required=false) int inputInt
  4. ,HttpServletRequest request) {
  5. // ......省略
  6. return "index";
  7. }

解决方法: 
    “Consider declaring it as object wrapper for the corresponding primitive type.”建议使用包装类型代替基本类型,如使用“Integer”代替“int”

时间: 2024-10-05 23:49:57

springmvc后台控制层获取参数的方法的相关文章

在SpringMVC后台控制层获取参数的方式主要有两种,一种是request.getParameter(&quot;name&quot;),另外一种是用注解@RequestParam直接获取。这里主要讲这个注解

一.基本使用,获取提交的参数 后端代码: Java代码   @RequestMapping("testRequestParam") public String filesUpload(@RequestParam String inputStr, HttpServletRequest request) { System.out.println(inputStr); int inputInt = Integer.valueOf(request.getParameter("inpu

java web项目中后台控制层对参数进行自定义验证 类 Pattern

Pattern pattern = Pattern.compile("/^([1-9]\\d+元*|[0]{0,1})$/");//将给定的正则表达式编译到模式中 if(!"".equals(mmshop.getOriginalPrice().trim())){ if(!pattern.matcher(mmshop.getOriginalPrice().trim()).matches()){ map.put("msg","请输入数字或x

springmvc后台接前端的参数,数组,集合,复杂对象等

springmvc后台接前端的参数,数组,集合,复杂对象等 参考地址:https://blog.csdn.net/feicongcong/article/details/54705933 常用的几种方式如下: (1)数组: 后台 @ResponseBody @RequestMapping(value = "/ajaxsortPriority") public ResultDo ajaxsortPriority(@RequestParam("ids[]") Long[

Node.js express获取参数有三种方法

Node.js express获取参数有三种方法 近本人在学习开发NodeJs,使用到express框架,对于网上的学习资料甚少,因此本人会经常在开发中做一些总结. express获取参数有三种方法:官网介绍如下 Checks route params (req.params), ex: /user/:id Checks query string params (req.query), ex: ?id=12 Checks urlencoded body params (req.body), ex

在springMVC的controller层获取view层的参数的方式

方法一:request.getParameter("name") 方法二:注解@RequestParam @RequestMapping("testRequestParam") //注解的方式 public String filesUpload(@RequestParam(value="inputStr", required=false) String inputStr, HttpServletRequest request) { System.

161018、springMVC中普通类获取注解service方法

1.新建一个类SpringBeanFactoryUtils 实现 ApplicationContextAware package com.loiot.baqi.utils; import org.springframework.beans.BeansException; import org.springframework.context.ApplicationContext; import org.springframework.context.ApplicationContextAware;

spring-mvc 非 controller 层获取HttpServletRequest

在项目中记录操作日志,是一种很常见的需求. 有时我们在service或者dao层记录日志,需要同时保存访问ip.登录用户名等.如果从controller层把HttpServletRequest 对象传过去会显得很麻烦.HttpSession可以通过HttpServletRequest 间接获取. 在web.xml配置 <listener>   <listener-class>org.springframework.web.context.request.RequestContext

小程序 循环遍历 传参数 获取参数的方法

//循环操作 block包裹着被循环的模板 <block wx:for="{{post_content}}" wx:for-item="item" wx:for-index="index" wx:key="index"> <!-- {{...item}}展开这个对象 --> <!-- data-postId={{item.postId}}自定义属性 --> <view catchtap

phalcon: 获取参数的方法

一般情况下:GET/POST $this->request->get(参数); $this->request->getPost("参数") route下: this->dispatcher->getParam("参数"); session: $this->session->get("参数"); //设置: $this->session->set(key, $value);