当前位置:首页 > 通信资讯 > 正文
目录
  • 使用ModelAndView向request域对象共享数据
  • 使用Model向request域对象共享数据
  • 使用map向request域对象共享数据
  • 使用ModelMap向request域对象共享数据
  • Model、ModelMap、Map的关系
  • 向session域共享数据
  • 向application域共享数据

使用ModelAndView向request域对象共享数据

index.html

<a th:href="@{/testModelAndView}" rel="external nofollow" >使用ModelAndView</a>

springmvc 域对象共享数据的实现示例(springmvc 域对象共享数据的实现示例)

控制器

/** * ModelAndView有Model和View的功能 * Model主要用于向请求域共享数据 * View主要用于设置视图,实现页面跳转 */ @RequestMapping("/testModelAndView") public ModelAndView success(){ ModelAndView modelAndView = new ModelAndView(); modelAndView.addObject("username","gonghr"); //向请求域共享数据 modelAndView.setViewName("success"); //设置视图名称,实现页面跳转 return modelAndView; //返回 }

success.html

sucess <p th:text="${username}"></p>

springmvc 域对象共享数据的实现示例(springmvc 域对象共享数据的实现示例)

使用Model向request域对象共享数据

index.html

<a th:href="@{/testModel}" rel="external nofollow" >使用Model</a> <br>

控制器

@RequestMapping("/testModel") public String testModel(Model model){ model.addAttribute("company","JLU"); return "success"; }

success.html

sucess <p th:text="${company}"></p> <br>

springmvc 域对象共享数据的实现示例(springmvc 域对象共享数据的实现示例)

使用map向request域对象共享数据

index.html

<a th:href="@{/testMap}" rel="external nofollow" >使用Map</a> <br>

控制器

@RequestMapping("/testMap") public String testMap(Map<String, Object> map){ map.put("age","Nineteen"); return "success"; }

sucess.html

sucess <p th:text="${age}"></p> <br>

springmvc 域对象共享数据的实现示例(springmvc 域对象共享数据的实现示例)

使用ModelMap向request域对象共享数据

index.html

<a th:href="@{/testModelMap}" rel="external nofollow" >使用ModelMap</a> <br>

控制器

@RequestMapping("/testModelMap") public String testModelMap(ModelMap modelMap){ modelMap.addAttribute("major","software engineering"); return "success"; }

success.html

<p th:text="${major}"></p> <br>

springmvc 域对象共享数据的实现示例(springmvc 域对象共享数据的实现示例)

Model、ModelMap、Map的关系

经过测试发现:除了ModelAndView的实现类是ModelAndViewModelMapModelMap 的实现类都是BindingAwareModelMap

ModelModelMapMap类型的参数其实本质上都是 BindingAwareModelMap 类型的

class of ModelAndView: class org.springframework.web.servlet.ModelAndView class of Model: class org.springframework.validation.support.BindingAwareModelMap class of Map: class org.springframework.validation.support.BindingAwareModelMap class of ModelMap: class org.springframework.validation.support.BindingAwareModelMap

阅读ModeAndView的源码可以发现,ModeAndViewModelMap是组合关系。下面是ModeAndView的部分源码。

public class ModelAndView { @Nullable private ModelMap model; public ModelAndView() { } public ModelMap getModelMap() { if (this.model == null) { this.model = new ModelMap(); } return this.model; } public ModelAndView addObject(String attributeName, @Nullable Object attributeValue) { this.getModelMap().addAttribute(attributeName, attributeValue); return this; }

ModeAndView调用addObject()方法时其实是调用ModelMapaddAttribute()方法,本质上与ModelMap是一样的。

各个类之间的关系如下:

public interface Model{} public class ModelMap extends LinkedHashMap<String, Object> {} public class ExtendedModelMap extends ModelMap implements Model {} public class BindingAwareModelMap extends ExtendedModelMap {}

springmvc 域对象共享数据的实现示例(springmvc 域对象共享数据的实现示例)

四种方式本质上都是调用的Model接口中的addAttribute方法

向session域共享数据

index.html

<a th:href="@{/testSession}" rel="external nofollow" >使用Session</a> <br>

控制器

@RequestMapping("/testSession") public String testSession(HttpSession session){ session.setAttribute("message","session scope"); return "success"; }

success.html

<p th:text="${session.message}"></p> <br>

springmvc 域对象共享数据的实现示例(springmvc 域对象共享数据的实现示例)

向application域共享数据

index.html

<a th:href="@{/testApplication}" rel="external nofollow" >使用Application</a> <br>

控制器

@RequestMapping("/testApplication") public String testApplication(HttpSession session){ ServletContext application = session.getServletContext(); application.setAttribute("testApplication","hello,application"); return "success"; }

success.html

<p th:text="${application.testApplication}"></p> <br>

springmvc 域对象共享数据的实现示例(springmvc 域对象共享数据的实现示例)

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

原文链接:https://www.cnblogs.com/gonghr/p/15202176.html

如果您对该产品感兴趣,请填写办理(客服微信:xiaoxiongyidong)

为您推荐:

发表评论

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。