springMVC Model ModelMap 和 ModelAndView的區別
阿新 • • 發佈:2018-11-21
近來在看程式碼,發現controller裡有不同的處理返回資料的方式,而自己一直在用ModelAndView在處理資料,對於其他的方式也零星用過,但是總感覺不明白其中的區別,也就寫了這篇部落格總結一下:
簡單來說:
Model是包含四個addAttribute 和一個 merAttribute方法的介面。
ModelMap :實現了Map介面,包含Map方法。檢視層通過request找到ModelMap中的資料。
ModelAndView:是包含ModelMap 和檢視物件的容器。正如名字暗示的一樣既包含模型也包含檢視,而ModelMap只是包含模型的資訊。
ModelAndView的例子,臺後
public class CarListController implements Controller { public ModelAndView handleRequest(HttpServletRequest arg0, HttpServletResponse arg1) throws Exception { CarManager carManager = new CarManager(); ModelAndView modelAndView = new ModelAndView("carList"); modelAndView.addObject("carList", carManager.getCarList()); return modelAndView; }}
ModelAndView的例子,前臺view
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> <html><body> <h1>Car List</h1> <c:forEach items="${carList}" var="car"> ${car.brand.name} ${car.model}: ${car.price} <br /> </c:forEach> </body><html>
ModelMap的例子:
public String testMethod(String someparam,ModelMap model){ //省略方法處理邏輯若干 //將資料放置到ModelMap物件model中,第二個引數可以是任何java型別 model.addAttribute("key",someparam); ...... //返回跳轉地址 return "test/test";}
或者直接使用介面:
public String toProvinceView(Model model, HttpSession session,) { model.addAttribute("colModel", colModel); model.addAttribute("colNames", colNames); model.addAttribute("buttonName", buttonName); return "statistic/StatisticChart";
參考資料:
http://error.news/question/231833/what-are-the-differences-between-model-modelmap-and-modelandview/
http://stackoverflow.com/questions/3344627/whats-the-difference-between-modelandview-and-modelmap
http://www.concretepage.com/spring/spring-mvc/spring-mvc-form-handling-example
再分享一下我老師大神的人工智慧教程吧。零基礎!通俗易懂!風趣幽默!希望你也加入到我們人工智慧的隊伍中來!http://www.captainbed.net