处理器方法的形参
- HttpServletRequest
- HttpServletResponse
- HttpSession
逐个接收
形参名和参数名一致
读取参数,逐个接收:要求方法的形参名和请求中的参数名必须一致
发起带参请求
index.jsp
<form action="test/some.do">
姓名:<input type="text" name="name"><br/>
年龄:<input type="text" name="age"><br/>
<input type="submit" value="提交">
</form>
Controller接收参数
@Controller
@RequestMapping("/test")
public class MyController {
@RequestMapping(value ={"/some.do"},method = RequestMethod.GET)
public ModelAndView doSome(String name,int age){
System.out.println("dd");
ModelAndView mv=new ModelAndView();
mv.addObject("name",name);
mv.addObject("age",age);
mv.setViewName("/show.jsp");
return mv;
}
}
显示页面
show.jsp
<h3>show.jsp从request作用域获取数据</h3>
<h3>name:${name}</h3>
<h3>age:${age}</h3>
结果
接收原理
框架接收请求参数
1、使用request对象接收请求参数
String strName=request.getParameter("name");
String strAge=request.getParameter("age");
2、springmvc框架通过DispatcherServlet调用controller的对应方法
调用方法时按名称对应,把接受的参数赋值给形参
框架会提供类型转换的功能,能把String转为Int等其他类型
doSome(strName,Integer.valueOf(strAge));