Uses of Interface
org.springframework.ui.Model
Packages that use Model
Package
Description
Generic support for UI layer concepts.
Support classes for handling validation results.
-
Uses of Model in org.springframework.ui
Classes in org.springframework.ui that implement ModelModifier and TypeClassDescriptionclassImplementation of theModelinterface based on aConcurrentHashMapfor use in concurrent scenarios.classMethods in org.springframework.ui that return ModelModifier and TypeMethodDescriptionModel.addAllAttributes(Collection<?> attributeValues) Copy all attributes in the suppliedCollectioninto thisMap, using attribute name generation for each element.Model.addAllAttributes(Map<String, ?> attributes) Copy all attributes in the suppliedMapinto thisMap.Model.addAttribute(Object attributeValue) Add the supplied attribute to thisMapusing agenerated name.Model.addAttribute(String attributeName, @Nullable Object attributeValue) Add the supplied attribute under the supplied name.Model.mergeAttributes(Map<String, ?> attributes) Copy all attributes in the suppliedMapinto thisMap, with existing objects of the same name taking precedence (i.e. -
Uses of Model in org.springframework.validation.support
Classes in org.springframework.validation.support that implement ModelModifier and TypeClassDescriptionclassSubclass ofConcurrentModelthat automatically removes theBindingResultobject when its corresponding target attribute is replaced through regularMapoperations.classSubclass ofExtendedModelMapthat automatically removes aBindingResultobject if the corresponding target attribute gets replaced through regularMapoperations.