类 ModelMap
- java.lang.Object
- java.util.AbstractMap<K,V>
- java.util.HashMap<K,V>
- java.util.LinkedHashMap<String,Object>
- org.springframework.ui.ModelMap
- 所有已实现的接口:
Serializable,Cloneable,Map<String,Object>
public class ModelMap extends LinkedHashMap<String,Object>
Implementation ofMapfor use when building model data for use with UI tools. Supports chained calls and generation of model attribute names.This class serves as generic model holder for Servlet MVC but is not tied to it. Check out the
Modelinterface for an interface variant.- 从以下版本开始:
- 2.0
- 作者:
- Rob Harrop, Juergen Hoeller
- 另请参阅:
Conventions.getVariableName(java.lang.Object),ModelAndView, 序列化表格
嵌套类概要
从类继承的嵌套类/接口 java.util.AbstractMap
AbstractMap.SimpleEntry<K extends Object,V extends Object>, AbstractMap.SimpleImmutableEntry<K extends Object,V extends Object>
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 ModelMapaddAllAttributes(Collection<?> attributeValues)Copy all attributes in the suppliedCollectioninto thisMap, using attribute name generation for each element.ModelMapaddAllAttributes(Map<String,?> attributes)Copy all attributes in the suppliedMapinto thisMap.ModelMapaddAttribute(Object attributeValue)Add the supplied attribute to thisMapusing agenerated name.ModelMapaddAttribute(String attributeName, Object attributeValue)Add the supplied attribute under the supplied name.booleancontainsAttribute(String attributeName)Does this model contain an attribute of the given name?ObjectgetAttribute(String attributeName)Return the attribute value for the given name, if any.ModelMapmergeAttributes(Map<String,?> attributes)Copy all attributes in the suppliedMapinto thisMap, with existing objects of the same name taking precedence (i.e. not getting replaced).从类继承的方法 java.util.LinkedHashMap
clear, containsValue, entrySet, forEach, get, getOrDefault, keySet, removeEldestEntry, replaceAll, values
从类继承的方法 java.util.HashMap
clone, compute, computeIfAbsent, computeIfPresent, containsKey, isEmpty, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, size
从类继承的方法 java.util.AbstractMap
equals, hashCode, toString
从接口继承的方法 java.util.Map
compute, computeIfAbsent, computeIfPresent, containsKey, equals, hashCode, isEmpty, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, size
构造器详细资料
ModelMap
public ModelMap()
Construct a new, emptyModelMap.
ModelMap
public ModelMap(String attributeName, @Nullable Object attributeValue)
Construct a newModelMapcontaining the supplied attribute under the supplied name.
ModelMap
public ModelMap(Object attributeValue)
Construct a newModelMapcontaining the supplied attribute. Uses attribute name generation to generate the key for the supplied model object.- 另请参阅:
addAttribute(Object)
方法详细资料
addAttribute
public ModelMap addAttribute(String attributeName, @Nullable Object attributeValue)
Add the supplied attribute under the supplied name.- 参数:
attributeName- the name of the model attribute (nevernull)attributeValue- the model attribute value (can benull)
addAttribute
public ModelMap addAttribute(Object attributeValue)
Add the supplied attribute to thisMapusing agenerated name.Note: Empty
Collectionsare not added to the model when using this method because we cannot correctly determine the true convention name. View code should check fornullrather than for empty collections as is already done by JSTL tags.- 参数:
attributeValue- the model attribute value (nevernull)
addAllAttributes
public ModelMap addAllAttributes(@Nullable Collection<?> attributeValues)
Copy all attributes in the suppliedCollectioninto thisMap, using attribute name generation for each element.- 另请参阅:
addAttribute(Object)
addAllAttributes
public ModelMap addAllAttributes(@Nullable Map<String,?> attributes)
Copy all attributes in the suppliedMapinto thisMap.
mergeAttributes
public ModelMap mergeAttributes(@Nullable Map<String,?> attributes)
Copy all attributes in the suppliedMapinto thisMap, with existing objects of the same name taking precedence (i.e. not getting replaced).
containsAttribute
public boolean containsAttribute(String attributeName)
Does this model contain an attribute of the given name?- 参数:
attributeName- the name of the model attribute (nevernull)- 返回:
- whether this model contains a corresponding attribute
getAttribute
@Nullable public Object getAttribute(String attributeName)
Return the attribute value for the given name, if any.- 参数:
attributeName- the name of the model attribute (nevernull)- 返回:
- the corresponding attribute value, or
nullif none - 从以下版本开始:
- 5.2