码迷,mamicode.com
首页 > 编程语言 > 详细

Spring之Model

时间:2017-08-29 14:15:58      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:collect   过程   bool   logs   4.0   int   ext   util   port   

初学Spring,上课老师讲解的是ModelAndView,而Spring4.0实战书上用Model,那么他们之间的区别是什么呢?

首先要去看源代码咯,书上只有这个<import org.springframework.ui.Model>导包过程,其实起源代码在

<spring-context-4.1.3.RELEASE-sources.jar>中;

源代码中发现Model是一个接口,Model实际上就是个Map(key-value的集合),

书上用的Model addAttribute(Object attributeValue);此方法Spring框架会自动为他生成key,假如是value值是Spittle,那么key为spittleList

package org.springframework.ui;

import java.util.Collection;
import java.util.Map;

public interface Model {

      Model addAttribute(String attributeName, Object attributeValue);

      Model addAttribute(Object attributeValue);

      Model addAllAttributes(Collection<?> attributeValues);

      Model addAllAttributes(Map<String, ?> attributes);

      Model mergeAttributes(Map<String, ?> attributes);

      boolean containsAttribute(String attributeName);

      Map<String, Object> asMap();
}

  

 

Spring之Model

标签:collect   过程   bool   logs   4.0   int   ext   util   port   

原文地址:http://www.cnblogs.com/saber-himesama/p/7447695.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!