获取请求参数
ServiceAPI获取请求参数
//request表示当前请求 不能和之前占位符同时用
@RequestMapping(“asd”)
public String aGetById(HttpServictRequest request){ //request Map形式请求体
request.getParameter(“username”);
…
}
MVC控制器获取请求参数
@RequserParam
@RequestMapping(“asd”)
public String aGetById(String username,@RequserParam(value=“pass_word”,required=false,defaultValue=“123123”)String password){ //保证这个username和请求体中名一样就行 ,名不一样就加注解不加required有注解就必须传参defaultValue设置默认值
//同名字符串中间会是,分割 也可以用数组
String s=username+“18”;
…
}
@RequserHeader
@RequestMapping(“asd”)
public String aGetById( @RequserHeader(value=“host”) String host){ //去请求头中找host给host(后)也有required,defaultValue
…
}
@CookieValue
@RequestMapping(“asd”)
public String aGetById( @CookieValue(value=“JSESSIONID”) String JSESSIONID){ //三个都差不多
…
}
通过pojo获取请求参数
请求参数名跟实体类属性名一直
@RequestMapping(“asd”)
public String aGetById(User user){
…
}
@RequestMapping(“asd”)
public String aGetById(Srting username){
…
}
//乱码post过滤器
web.xml
<!--配置springMVC的编码过滤器-->
<filter>
<filter-name>CharacterEncodingFilter</filter-name>
<filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
<init-param>
<param-name>encoding</param-name>
<param-value>UTF-8</param-value>
</init-param>
<init-param>
<param-name>forceResponseEncoding</param-name>
<param-value>true</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>CharacterEncodingFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
域对象共享数据
使用ServiceAPI向request域中共享数据
相当于在request中加了个testScope:hello,servletAPI的值
@RequestMapping("/testServletAPI")
public String testServletAPI(HttpServletRequest request){
request.setAttribute("testScope", "hello,servletAPI");
return "要跳转的页面";
}
ModelAndView 向request域中共享数据 必须返回ModelAndView 对象
@RequestMapping("/testModelAndView")
public ModelAndView testModelAndView(){
/**
* ModelAndView有Model和View的功能
* Model主要用于向请求域共享数据
* View主要用于设置视图,实现页面跳转
*/
ModelAndView mav = new ModelAndView();
//向请求域共享数据
mav.addObject("testScope", "hello,ModelAndView");
//设置视图,实现页面跳转
mav.setViewName("要跳转的页面");
return mav;
}
3、使用Model向request域对象共享数据
@RequestMapping("/testModel")
public String testModel(Model model){
model.addAttribute("testScope", "hello,Model");
return "要跳转的页面";}
4、使用map向request域对象共享数据
@RequestMapping("/testMap")
public String testMap(Map<String, Object> map){
map.put("testScope", "hello,Map");
return "要跳转的页面";}
5、使用ModelMap向request域对象共享数据
@RequestMapping("/testModelMap")
public String testModelMap(ModelMap modelMap){
modelMap.addAttribute("testScope", "hello,ModelMap");
return "要跳转的页面";}
Model、ModelMap、Map类型的参数其实本质上都是 BindingAwareModelMap 类型的
7、向session域共享数据
@RequestMapping("/testSession")
public String testSession(HttpSession session){
session.setAttribute("testSessionScope", "hello,session"); return "要跳转的页面";}
8、向application域共享数据
@RequestMapping("/testApplication")
public String testApplication(HttpSession session){
ServletContext application = session.getServletContext(); application.setAttribute("testApplicationScope", "hello,application");
return "要跳转的页面";}