SpringMVC域对象共享数据

1、使用ServletAPI向request域对象共享数据
@RequestMapping("/testServletAPI")
public String testServletAPI(HttpServletRequest request){
   request.setAttribute("testScope", "hello,servletAPI");
   return "success";
}
2、使用ModelAndView向request域对象共享数据
@RequestMapping("/testModelAndView")
public ModelAndView testModelAndView(){
   /**
    * ModelAndView有Model和View的功能
    * Model主要用于向请求域共享数据
    * View主要用于设置视图,实现页面跳转
    */
   ModelAndView mav = new ModelAndView();
   //向请求域共享数据

SpringMVC域对象共享数据最先出现在Python成神之路

版权声明:
作者:Alex
链接:https://www.techfm.club/p/18577.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>