关于SpringMVC请求域对象的数据共享问题

SpringMVC支持路径中的占位符。

可以通过路径的方式来传参。restful风格。使用{}做占位符在路径中指定参数,使用@PathVariable注解在参数列表中指定。

传了参数
@RequestMapping("/test/{id}")
public String test(@PathVariable("id")Integer id){
    System.out.println(id);
    return "index";
}

如果使用了占位符则请求地址必须有值,否则会报404错误。

获取请求参数

使用ServletAPI获取(基本不用)

@RequestMapping("/testParam")
public String Param(HttpServletRequest request){
    String userName = request.getParameter("userName");
    String password = request.getParameter("password");
    return "index";
}

通过控制器的形参获取(保证参数名相同的情况下)牛逼

传了参数
@RequestMapping("/testParam")
public String testParam(String username,String password){
    System.out.println("username:"+username+",password:"+password);
    return "index";
}

RequestParam

请求参数和控制器形参创建映射关系。

  • Value
  • Required
  • DefaultValue

使用实体类接受请求参数

@RequestMapping("/testPojo")
public String testPojo(User user){
    System.out.println(user);
    return "index";
}

配置过滤器,处理乱码问题


    CharacterEncodingFilter
    org.springframework.web.filter.CharacterEncodingFilter
    
    
        encoding
        UTF-8
    
    
    
        forceResponseEncoding
        true
    


    CharacterEncodingFilter
    /*

域对象共享数据

使用原生ServletAPI向request域对象共享数据(不用)

@RequestMapping("/test")
public String test(HttpServletRequest request){
    request.setAttribute("hello","hello");
    return "index";
}

使用ModelAndView对象

返回值类型为ModelAndView

//使用ModelAndView对象的方式
@RequestMapping("/")
public ModelAndView toIndex(HttpServletRequest request){
    ModelAndView mav = new ModelAndView();
    //设置共享数据
    mav.addObject("result","mavResult");
    //设置视图名称
    //视图名称=逻辑视图名称。
    mav.setViewName("index");
    return mav;
}

使用Model对象

Model是一个接口,因此不能像ModelAndView那样去new。

//使用Model对象的方式
@RequestMapping("/")
public String toIndexModel(Model model){
    //设置共享数据
    model.addAttribute("result","ModelResult");
    return "index";
}

使用Map集合

//使用Map对象的方式
@RequestMapping("/")
public String toIndexModel(Map map){
    //设置共享数据
    map.put("result","MapResult");
    return "index";
}

使用ModelMap

ModelMap的实例是由mvc框架自动创建并作为控制器方法参数传入,无需也不能自己创建。

如自己创建,则无法共享数据。

//使用ModelMap对象的方式
@RequestMapping("/")
public String toIndexModel(ModelMap modelMap){
    //设置共享数据
    modelMap.addAttribute("result","ModelMapResult");
    return "index";
}

到此这篇关于SpringMVC请求域对象的数据共享的文章就介绍到这了,更多相关SpringMVC请求域对象内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

你可能感兴趣的:(关于SpringMVC请求域对象的数据共享问题)